sandstrom
sandstrom
Very good proposal! 💯 I think it would make sense to try to deprecate `Handlebars.SafeString` and replace it with `Handlebars.TrustedString` while we're at it. As others have mentioned, I think...
Polymorphism for queries would be very useful! Random thoughts: - How about an adapter-level property `assumePolymorphism: true/false`. That way, some people can go with the more verbose `find('my-query', { polymorphic:...
**EDIT: unsure about this** Maybe a good starting point would be a smaller RFC that only focused on conditional blocks, and (maybe) also loops? At least for us, that's the...
**EDIT: this may not make sense** There may be different ways of solving this, and I'm not sure my idea is the best. But to me, if/else gating would seem...
@NullVoxPopuli Makes sense, I understand. Good points!
I thought the aim was to [move away from this addon](https://github.com/ember-cli/ember-ajax/issues/319#issuecomment-348316948), onto ember-fetch? If that's the case, wouldn't it make more sense to focus efforts elsewhere? But perhaps I'm just...
@alexlafroscia Somewhat related: how about a note on top of the readme, mentioning that `ember-fetch` also exist and is an equally good option. That way, beginners will at least be...
It's not an HTTP error in the sense that there is no HTTP status code (20x, 40x, etc). Timeouts occur in the TCP layer (connection timeouts, read timeouts) and there...
@alexlafroscia Given the plan to (probably) phase out the helpers in favour of `instanceOf` checks, it would make sense to add an intermediary class in the error hierarchy. ``` EmberError...
~If I read #232 correctly it doesn't change much (`isNone` is the same as checking for undefined and null). So I don't think it would have affected this.~ EDIT: Forget...