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

22 lines
527 B
JavaScript
Raw Normal View History

import Ember from 'ember';
2017-10-13 22:17:51 +00:00
import { default as ApplicationAdapter, namespace } from './application';
const { inject } = Ember;
2017-10-13 22:17:51 +00:00
export default ApplicationAdapter.extend({
store: inject.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
});