diff --git a/app/authenticators/application.js b/app/authenticators/application.js index 3ffd4ff..3ae0d7d 100644 --- a/app/authenticators/application.js +++ b/app/authenticators/application.js @@ -6,7 +6,7 @@ const { RSVP: { Promise }, $, get, isEmpty, run } = Ember; export default BaseAuthenticator.extend({ serverTokenEndpoint: `${config.APP.API_HOST}/api/auth/login/`, - tokenAttributeName: 'data.token', + tokenAttributeName: 'data.attributes.auth-token', identificationAttributeName: 'username', verificationAttributeName: 'password', diff --git a/app/authorizers/application.js b/app/authorizers/application.js index 0cccc15..b8c154c 100644 --- a/app/authorizers/application.js +++ b/app/authorizers/application.js @@ -5,7 +5,7 @@ const { isEmpty, get } = Ember; export default BaseAuthorizer.extend({ authorize(data, block) { - const accessToken = get(data, 'data.token'); + const accessToken = get(data, 'data.attributes.auth-token'); if (!isEmpty(accessToken)) { block('Authorization', `Token ${accessToken}`); } diff --git a/tests/unit/authenticators/application-test.js b/tests/unit/authenticators/application-test.js index 48847fb..6cf975e 100644 --- a/tests/unit/authenticators/application-test.js +++ b/tests/unit/authenticators/application-test.js @@ -10,7 +10,7 @@ moduleFor('authenticator:application', 'Unit | application', { test('should restore session when token is present', function(assert) { assert.expect(1); const authenticator = this.subject(); - const data = {data: {token: 'foo'}}; + const data = {data: {attributes: {'auth-token': 'foo'}}}; return authenticator.restore(data).then((obs) => { assert.equal(obs, data); });