Ghost/ghost/admin/app/routes/explore.js
Aileen Booker 6c9f8ec32d
Improved URL syncing between Admin and Explore (#15640)
no issue

Improve the route communication between Ghost Admin and Ghost Explore to
reflect route changes in the URL and correctly navigate to Explore sub
routes
2022-10-21 11:48:18 +01:00

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');
}
}