mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 04:10:33 +03:00
fdc24103cc
no issue * ran native classes codemod for app/adapters * migrated slug-url mixin to a utility
15 lines
405 B
JavaScript
15 lines
405 B
JavaScript
import ApplicationAdapter from './application';
|
|
import classic from 'ember-classic-decorator';
|
|
|
|
@classic
|
|
export default class Email extends ApplicationAdapter {
|
|
retry(model) {
|
|
let url = `${this.buildURL('email', model.get('id'))}retry/`;
|
|
|
|
return this.ajax(url, 'PUT', {data: {}}).then((data) => {
|
|
this.store.pushPayload(data);
|
|
return model;
|
|
});
|
|
}
|
|
}
|