diff --git a/app/authenticators/jwt-resolved.js b/app/authenticators/jwt-resolved.js
index 1417236..4abf71b 100644
--- a/app/authenticators/jwt-resolved.js
+++ b/app/authenticators/jwt-resolved.js
@@ -1,19 +1,29 @@
-// Note: this is here for user lockout authentication
+// Note: this authenticator exists for user lockout --- they are sent a copy
+// of a valid JWT to their registered email address. The lockout route plucks
+// the token off the URL and passes it directly into this authenticator.
+
+import BaseAuthenticator from 'ember-simple-auth/authenticators/base';
import Ember from 'ember';
-import JwtTokenAuthenticator from 'simple-auth-token/authenticators/jwt';
-export default JwtTokenAuthenticator.extend({
+const { RSVP, isEmpty } = Ember;
+
+export default BaseAuthenticator.extend({
authenticate: function(token) {
- return new Ember.RSVP.Promise(resolve => {
- let tokenData = this.getTokenData(token);
- let expiresAt = tokenData[this.tokenExpireName];
- let response = {};
- response[this.tokenPropertyName] = token;
- response.expiresAt = expiresAt;
- this.scheduleAccessTokenRefresh(expiresAt, token);
-
- resolve(this.getResponseData(response));
+ return new RSVP.Promise((resolve, reject) => {
+ if (isEmpty(token)) {
+ reject();
+ } else {
+ // For now assume that the token we have received is actually valid.
+ resolve({'access_token': token});
+ }
});
},
+ restore: function(data) {
+ return RSVP.resolve(data);
+ },
+
+ invalidate: function(data) {
+ return RSVP.resolve();
+ },
});
diff --git a/app/pods/login/template.hbs b/app/pods/login/template.hbs
index c56ca42..246c876 100644
--- a/app/pods/login/template.hbs
+++ b/app/pods/login/template.hbs
@@ -7,6 +7,6 @@
- Forget your password? {{link-to 'Request a lockout email.' 'users.requestlockouthelp'}}
+ {{link-to 'Forget your password?' 'users.requestlockouthelp'}}