mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 04:10:33 +03:00
8d01fb5556
no issue - ran [ember-native-class-codemod](https://github.com/ember-codemods/ember-native-class-codemod) to convert the majority of remaining EmberObject based controllers and components to native class syntax using the `@classic` decorator - skipped older style modal components (`components/modal-*.js`) due to observed incompatibilities in some cases
24 lines
597 B
JavaScript
24 lines
597 B
JavaScript
import Controller from '@ember/controller';
|
|
import classic from 'ember-classic-decorator';
|
|
import {action} from '@ember/object';
|
|
import {alias} from '@ember/object/computed';
|
|
|
|
@classic
|
|
export default class NewController extends Controller {
|
|
@alias('model')
|
|
webhook;
|
|
|
|
@action
|
|
save() {
|
|
return this.webhook.save();
|
|
}
|
|
|
|
@action
|
|
cancel() {
|
|
// 'new' route's dectivate hook takes care of rollback
|
|
return this.webhook.get('integration').then((integration) => {
|
|
this.transitionToRoute('settings.integration', integration);
|
|
});
|
|
}
|
|
}
|