d51f2bcf23
closes https://github.com/TryGhost/Admin/pull/2107 - updated related babel dependencies - bumped eslint - ran `yarn lint:js --fix` - added eslint ignore comments for some required non-camel-case properties
13 lines
293 B
JavaScript
13 lines
293 B
JavaScript
import Controller from '@ember/controller';
|
|
import classic from 'ember-classic-decorator';
|
|
import {alias} from '@ember/object/computed';
|
|
|
|
@classic
|
|
export default class BillingController extends Controller {
|
|
queryParams = ['action'];
|
|
action = null;
|
|
|
|
@alias('model')
|
|
guid;
|
|
}
|