404/Not Found

Fixes #21
This commit is contained in:
Matthew Dillon 2015-10-14 11:24:40 -07:00
parent 8577c38a9f
commit 0c8fc4db6c
4 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,11 @@
import Ember from 'ember';
export default Ember.Route.extend({
redirect: function() {
let url = this.router.location.formatURL('/not-found');
if (window.location.pathname !== url) {
this.transitionTo('/not-found');
}
}
});

View file

@ -0,0 +1,3 @@
{{#x-application invalidateSession="invalidateSession"}}
<h1>404 Not Found</h1>
{{/x-application}}

View file

@ -9,4 +9,11 @@ export default Ember.Route.extend(AuthenticatedRouteMixin, {
return this.store.find('user', user.sub);
},
actions: {
error: function() {
this.transitionTo('/not-found');
},
},
});

View file

@ -16,6 +16,8 @@ Router.map(function() {
});
});
this.route('not-found', { path: '/*path' });
this.route('protected', { path: '/' }, function() {
this.route('about');