2020-04-22 05:51:04 +03:00
|
|
|
import Controller from '@ember/controller';
|
2022-02-01 12:34:03 +03:00
|
|
|
import classic from 'ember-classic-decorator';
|
2020-04-22 05:51:04 +03:00
|
|
|
import {alias} from '@ember/object/computed';
|
|
|
|
|
2022-02-01 12:34:03 +03:00
|
|
|
@classic
|
|
|
|
export default class BillingController extends Controller {
|
|
|
|
queryParams = ['action'];
|
|
|
|
action = null;
|
2020-04-22 05:51:04 +03:00
|
|
|
|
2022-02-01 12:34:03 +03:00
|
|
|
@alias('model')
|
2022-02-10 13:41:36 +03:00
|
|
|
guid;
|
2022-02-01 12:34:03 +03:00
|
|
|
}
|