mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-07 03:22:21 +03:00
10 lines
164 B
JavaScript
10 lines
164 B
JavaScript
import Route from 'ember-route';
|
|
|
|
export default Route.extend({
|
|
actions: {
|
|
cancel() {
|
|
this.transitionTo('subscribers');
|
|
}
|
|
}
|
|
});
|