Ghost/ghost/admin/app/routes/billing.js
Nazar Gargol e5ff5c2869 Added billing controller for explicitness
refs d691b15

- Additionally removed redundant super call
2020-04-22 16:44:34 +12:00

23 lines
607 B
JavaScript

import Route from '@ember/routing/route';
import {inject as service} from '@ember/service';
export default Route.extend({
billing: service(),
queryParams: {
action: {refreshModel: true}
},
model(params) {
if (params.action) {
this.billing.set('action', params.action);
}
this.billing.set('billingWindowOpen', true);
// NOTE: if this route is ever triggered it was opened through external link because
// the route has no underlying templates to render we redirect to root route
this.transitionTo('/');
}
});