mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
7 lines
155 B
JavaScript
7 lines
155 B
JavaScript
|
import Controller from '@ember/controller';
|
||
|
import {alias} from '@ember/object/computed';
|
||
|
|
||
|
export default Controller.extend({
|
||
|
guid: alias('model')
|
||
|
});
|