mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
10 lines
203 B
JavaScript
10 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')
|
||
|
});
|