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/users/lockoutauthenticate/route.js
2015-11-10 07:55:08 -07:00

21 lines
674 B
JavaScript

import Ember from 'ember';
import UnauthenticatedRouteMixin from 'ember-simple-auth/mixins/unauthenticated-route-mixin';
const { Route, get, inject: { service } } = Ember;
export default Route.extend(UnauthenticatedRouteMixin, {
session: service(),
currentUser: service('session-account'),
beforeModel: function(transition) {
this._super(transition);
const token = get(transition, 'queryParams.token');
this.get('session').authenticate('authenticator:jwt-resolved', token).then(() => {
this.get('currentUser.account').then((account) => {
this.transitionTo('protected.users.changepassword', account.get('id'));
});
});
},
});