not-found.js 199 B

12345678910
  1. import Ember from 'ember';
  2. export default Ember.Route.extend({
  3. actions: {
  4. didTransition: function() {
  5. // Not found route transitions to error404
  6. throw {status: 404};
  7. }
  8. }
  9. });