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/protected/route.js
Matthew Dillon 21e0e6c624 Linting
2015-11-12 05:54:18 -07:00

15 lines
320 B
JavaScript

import Ember from 'ember';
import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin';
const { Route } = Ember;
export default Route.extend(AuthenticatedRouteMixin, {
actions: {
error: function(err) {
console.log(err);
this.transitionTo('/not-found');
},
},
});