open-nomad/ui/app/adapters/token.js

20 lines
518 B
JavaScript
Raw Normal View History

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