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