BUG: Fix token path (#23)

This commit is contained in:
Matthew Ryan Dillon 2017-09-10 20:13:48 -07:00 committed by GitHub
parent 55a1c4fca6
commit 8309486a8a
3 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,7 @@ const { RSVP: { Promise }, $, get, isEmpty, run } = Ember;
export default BaseAuthenticator.extend({ export default BaseAuthenticator.extend({
serverTokenEndpoint: `${config.APP.API_HOST}/api/auth/login/`, serverTokenEndpoint: `${config.APP.API_HOST}/api/auth/login/`,
tokenAttributeName: 'data.token', tokenAttributeName: 'data.attributes.auth-token',
identificationAttributeName: 'username', identificationAttributeName: 'username',
verificationAttributeName: 'password', verificationAttributeName: 'password',

View file

@ -5,7 +5,7 @@ const { isEmpty, get } = Ember;
export default BaseAuthorizer.extend({ export default BaseAuthorizer.extend({
authorize(data, block) { authorize(data, block) {
const accessToken = get(data, 'data.token'); const accessToken = get(data, 'data.attributes.auth-token');
if (!isEmpty(accessToken)) { if (!isEmpty(accessToken)) {
block('Authorization', `Token ${accessToken}`); block('Authorization', `Token ${accessToken}`);
} }

View file

@ -10,7 +10,7 @@ moduleFor('authenticator:application', 'Unit | application', {
test('should restore session when token is present', function(assert) { test('should restore session when token is present', function(assert) {
assert.expect(1); assert.expect(1);
const authenticator = this.subject(); const authenticator = this.subject();
const data = {data: {token: 'foo'}}; const data = {data: {attributes: {'auth-token': 'foo'}}};
return authenticator.restore(data).then((obs) => { return authenticator.restore(data).then((obs) => {
assert.equal(obs, data); assert.equal(obs, data);
}); });