Ghost/ghost/admin/app/controllers/billing.js

11 lines
207 B
JavaScript
Raw Normal View History

import Controller from '@ember/controller';
export default class BillingController extends Controller {
queryParams = ['action'];
action = null;
get guid() {
return this.model;
}
}