This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/pods/not-found/route.js
Matthew Dillon 21e0e6c624 Linting
2015-11-12 05:54:18 -07:00

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');
}
}
});