mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 19:48:50 +03:00
e5ff5c2869
refs d691b15
- Additionally removed redundant super call
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')
|
|
});
|