cefd51c81c
refs https://github.com/TryGhost/Ghost/issues/14101 - migrated to full native class syntax
11 lines
207 B
JavaScript
11 lines
207 B
JavaScript
import Controller from '@ember/controller';
|
|
|
|
export default class BillingController extends Controller {
|
|
queryParams = ['action'];
|
|
action = null;
|
|
|
|
get guid() {
|
|
return this.model;
|
|
}
|
|
}
|