open-nomad/ui/app/routes/csi/plugins/plugin.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
449 B
JavaScript
Raw Normal View History

2020-05-03 04:31:42 +00:00
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;
2020-05-03 04:31:42 +00:00
serialize(model) {
return { plugin_name: model.get('plainId') };
}
2020-05-03 04:31:42 +00:00
model(params) {
2021-12-28 16:08:12 +00:00
return this.store
.findRecord('plugin', `csi/${params.plugin_name}`)
.catch(notifyError(this));
}
}