mirror of
https://github.com/discourse/discourse-data-explorer.git
synced 2025-03-05 17:09:26 +00:00
10 lines
188 B
JavaScript
10 lines
188 B
JavaScript
|
|
export default Discourse.Route.extend({
|
|
controllerName: 'admin-plugins-explorer',
|
|
queryParams: { id: { replace: true } },
|
|
|
|
model() {
|
|
return this.store.findAll('query');
|
|
}
|
|
});
|