Chelsea Shaw da7fad68b8
UI: Replace getNewModel with hydrateModel when model exists (#27978)
* Replace getNewModel with hydrateModel when model exists

* Update getNewModel to only handle nonexistant model types

* Update test

* clarify test

* Fix auth-config models which need hydration not generation

* rename file to match service name

* cleanup + tests

* Add comment about helpUrl method
2024-08-07 16:07:25 +00:00

32 lines
782 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
import Route from '@ember/routing/route';
import { service } from '@ember/service';
export default class KmipRoleRoute extends Route {
@service store;
@service secretMountPath;
@service pathHelp;
beforeModel() {
return this.pathHelp.hydrateModel('kmip/role', this.secretMountPath.currentPath);
}
model(params) {
return this.store.queryRecord('kmip/role', {
backend: this.secretMountPath.currentPath,
scope: params.scope_name,
id: params.role_name,
});
}
setupController(controller) {
super.setupController(...arguments);
const { scope_name: scope, role_name: role } = this.paramsFor('role');
controller.setProperties({ role, scope });
}
}