mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 08:31:43 +03:00
11 lines
254 B
JavaScript
11 lines
254 B
JavaScript
|
var AuthenticatedRoute = Ember.Route.extend({
|
||
|
actions: {
|
||
|
error: function (error) {
|
||
|
if (error.jqXHR.status === 401) {
|
||
|
this.transitionTo('login');
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
|
||
|
export default AuthenticatedRoute;
|