Ghost/ghost/admin/app/controllers/billing.js
2022-10-07 17:59:49 +01:00

11 lines
207 B
JavaScript

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