19 lines
449 B
JavaScript
19 lines
449 B
JavaScript
import { inject as service } from '@ember/service';
|
|
import Route from '@ember/routing/route';
|
|
import notifyError from 'nomad-ui/utils/notify-error';
|
|
|
|
export default class PluginRoute extends Route {
|
|
@service store;
|
|
@service system;
|
|
|
|
serialize(model) {
|
|
return { plugin_name: model.get('plainId') };
|
|
}
|
|
|
|
model(params) {
|
|
return this.store
|
|
.findRecord('plugin', `csi/${params.plugin_name}`)
|
|
.catch(notifyError(this));
|
|
}
|
|
}
|