mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 05:50:35 +03:00
11 lines
274 B
JavaScript
11 lines
274 B
JavaScript
|
import AuthenticatedRoute from 'ghost-admin/routes/authenticated';
|
||
|
import {inject as service} from '@ember/service';
|
||
|
|
||
|
export default class ExploreRoute extends AuthenticatedRoute {
|
||
|
@service store;
|
||
|
|
||
|
model() {
|
||
|
return this.store.findAll('integration');
|
||
|
}
|
||
|
}
|