So, basically I am working on this app where I want to redirect users with incomplete profiles to fill it out. I know this can be done by using the afterModel hook within the router for EACH route, however, I was wondering if there's a hook that is called for ALL routes that could be used for this. This way I don't have to keep adding this logic in the afterModel for any new route I add.
EDIT:
What I ended up doing was this:
in controllers:
Blocks.ApplicationController = Ember.Controller.extend({
currentPathDidChange: function() {
var path = this.get('currentPath');
window.document.title = path;
}.observes('currentPath')
});