11 lines
327 B
JavaScript
11 lines
327 B
JavaScript
|
import ListController from 'core/mixins/list-controller';
|
||
|
import Controller from '@ember/controller';
|
||
|
import { computed } from '@ember/object';
|
||
|
import { getOwner } from '@ember/application';
|
||
|
|
||
|
export default Controller.extend(ListController, {
|
||
|
mountPoint: computed(function() {
|
||
|
return getOwner(this).mountPoint;
|
||
|
}),
|
||
|
});
|