mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 11:34:24 +03:00
0f17378b26
Refs #4001 - grunt-jscs@0.8.1 which provides ES6 support.
45 lines
1.5 KiB
JavaScript
45 lines
1.5 KiB
JavaScript
import EmbeddedRelationAdapter from 'ghost/adapters/embedded-relation-adapter';
|
|
|
|
var UserAdapter = EmbeddedRelationAdapter.extend({
|
|
createRecord: function (store, type, record) {
|
|
var data = {},
|
|
serializer = store.serializerFor(type.typeKey),
|
|
url = this.buildURL(type.typeKey);
|
|
|
|
// Ask the API to include full role objects in its response
|
|
url += '?include=roles';
|
|
|
|
// Use the UserSerializer to transform the model back into
|
|
// an array of user objects like the API expects
|
|
serializer.serializeIntoHash(data, type, record);
|
|
|
|
// Use the url from the ApplicationAdapter's buildURL method
|
|
return this.ajax(url, 'POST', {data: data});
|
|
},
|
|
|
|
updateRecord: function (store, type, record) {
|
|
var data = {},
|
|
serializer = store.serializerFor(type.typeKey),
|
|
id = Ember.get(record, 'id'),
|
|
url = this.buildURL(type.typeKey, id);
|
|
|
|
// Ask the API to include full role objects in its response
|
|
url += '?include=roles';
|
|
|
|
// Use the UserSerializer to transform the model back into
|
|
// an array of user objects like the API expects
|
|
serializer.serializeIntoHash(data, type, record);
|
|
|
|
// Use the url from the ApplicationAdapter's buildURL method
|
|
return this.ajax(url, 'PUT', {data: data});
|
|
},
|
|
|
|
find: function (store, type, id) {
|
|
var url = this.buildQuery(store, type, id);
|
|
url.status = 'all';
|
|
return this.findQuery(store, type, url);
|
|
}
|
|
});
|
|
|
|
export default UserAdapter;
|