Ryan Toronto

Results 90 comments of Ryan Toronto

I just ran into this and learned a bit about how service injection works. Hopefully this helps anyone else running into this issue... Services are lazily injected into Ember objects,...

I like everything you said, but that's a lot of stuff :) With today's router is it possible for an addon to create a new Route base class where we...

@Gaurav0 it seems like `passedModel` would do one of two things... ```js // old behavior passedModel(model, params, transition) { return model; } // or always run the model hook passedModel(model,...

I've updated the RFC proposing a new route base class that would always run its model hook. This will allow folks to switch to these new APIs when ready, without...

Y'all are fantastic writers and this was a fun RFC to read. I got really excited thinking about how editions would play a role in Ember's development! It sounds like...

Nice. I like where you're going, thanks for taking the time to explain. Next edition guides seem like a thoughtful way to communicate the current thinking and understanding around these...

I just ran into this issue as well. I'm building an application for tracking books. I've got an index page that shows all of the books and their authors. Books...

Thanks for the detailed explanation @tschoartschi ! It seems that setting the request's responseType and then allowing the request to passthrough is what's needed to get your code running as...

The fix in that issue won't work if `fastboot.request.host` doesn't allow HTTP traffic. For example, imagine this sort of request... Browser -> HTTPS -> LB -> HTTP -> Fastboot app...

Btw, here's what we're currently doing to code around this issue. ```js // app/adapters/application.js import DS from 'ember-data'; import Ember from 'ember'; import config from 'my-app/config/environment'; export default DS.JSONAPIAdapter.extend({ fastboot:...