Ghost/ghost/admin/app/controllers/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

10 lines
203 B
JavaScript

import Controller from '@ember/controller';
import {alias} from '@ember/object/computed';
export default Controller.extend({
queryParams: ['action'],
action: null,
guid: alias('model')
});