Ghost/ghost/admin/app/routes/explore.js
Aileen Nowak 085958d53d Added Ghost Explore integration
no issue

- bumps Ghost Explore to GA from alpha
2022-08-05 10:06:10 +01:00

11 lines
250 B
JavaScript

import AdminRoute from 'ghost-admin/routes/admin';
import {inject as service} from '@ember/service';
export default class ExploreRoute extends AdminRoute {
@service store;
model() {
return this.store.findAll('integration');
}
}