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

10 lines
203 B
JavaScript
Raw Normal View History

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