Ghost/ghost/admin/app/adapters/theme.js

13 lines
355 B
JavaScript
Raw Normal View History

import ApplicationAdapter from './application';
export default class Theme extends ApplicationAdapter {
activate(model) {
let url = `${this.buildURL('theme', model.get('id'))}activate/`;
return this.ajax(url, 'PUT', {data: {}}).then((data) => {
this.store.pushPayload(data);
return model;
});
}
}