1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00
Ghost-Admin/app/controllers/billing.js
Nazar Gargol 40e48cd5be Added billing controller for explicitness
refs 54a9189

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

9 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')
});