0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00
ghost/core/client/models/base.js

25 lines
659 B
JavaScript
Raw Normal View History

import ghostPaths from 'ghost/utils/ghost-paths';
var BaseModel = Ember.Object.extend({
fetch: function () {
return ic.ajax.request(this.url, {
type: 'GET'
});
},
save: function () {
return ic.ajax.request(this.url, {
type: 'PUT',
dataType: 'json',
// @TODO: This is passing _oldWillDestory and _willDestroy and should not.
data: JSON.stringify(this.getProperties(Ember.keys(this)))
});
}
});
BaseModel.apiRoot = ghostPaths().apiRoot;
BaseModel.subdir = ghostPaths().subdir;
BaseModel.adminRoot = ghostPaths().adminRoot;
export default BaseModel;