mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 01:42:29 +03:00
10 lines
164 B
JavaScript
10 lines
164 B
JavaScript
|
import Ember from 'ember';
|
||
|
|
||
|
export default Ember.Route.extend({
|
||
|
actions: {
|
||
|
cancel() {
|
||
|
this.transitionTo('subscribers');
|
||
|
}
|
||
|
}
|
||
|
});
|