If saving > 0 I can show some kind of loading… / saving… element.
In non ember apps I often used some global before and after callbacks (can’t remember the exact details). What’s the best way to tap into sth similar from Ember?
There are already some ember addons that handle this automatically for you, if they aren’t what you need (and it looks like they are) then maybe see their source for some inspiration?
create a service instead of storing this state on the application controller
reopen DS.Model class and override the save method. not sure whether injection works in models, so use the getOwner and lookup APIs to access your service. if you can’t get the service in the model, then this approach won’t work.