13 lines
269 B
JavaScript
13 lines
269 B
JavaScript
import Ember from 'ember';
|
|
|
|
const { Route } = Ember;
|
|
|
|
export default Route.extend({
|
|
redirect: function() {
|
|
const url = this.router.location.formatURL('/not-found');
|
|
|
|
if (window.location.pathname !== url) {
|
|
this.transitionTo('/not-found');
|
|
}
|
|
}
|
|
});
|