open-nomad/ui/app/adapters/token.js
Michael Lange 68142b3a82 Specify the request type for token self
Without this, the data (query params) get json stringified
2018-08-09 18:22:39 -07:00

20 lines
525 B
JavaScript

import { inject as service } from '@ember/service';
import { default as ApplicationAdapter, namespace } from './application';
export default ApplicationAdapter.extend({
store: service(),
namespace: namespace + '/acl',
findSelf() {
return this.ajax(`${this.buildURL()}/token/self`, 'GET').then(token => {
const store = this.get('store');
store.pushPayload('token', {
tokens: [token],
});
return store.peekRecord('token', store.normalize('token', token).data.id);
});
},
});