81f209d71e
Adds support for ACL Roles and Service Identities CRUD, along with necessary changes to Tokens, and the CSS improvements required. Also includes refinements/improvements for easier testing of deeply nested components. 1. ember-data adapter/serializer/model triplet for Roles 2. repository, form/validations and searching filter for Roles 3. Moves potentially, repeated, or soon to to repeated functionality into a mixin (mainly for 'many policy' relationships) 4. A few styling tweaks for little edge cases around roles 5. Router additions, Route, Controller and templates for Roles Also see: * UI: ACL Roles cont. plus Service Identities (#5661 and #5720)
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
import { get, set } from '@ember/object';
|
|
|
|
import kv from 'consul-ui/forms/kv';
|
|
import acl from 'consul-ui/forms/acl';
|
|
import token from 'consul-ui/forms/token';
|
|
import policy from 'consul-ui/forms/policy';
|
|
import role from 'consul-ui/forms/role';
|
|
import intention from 'consul-ui/forms/intention';
|
|
|
|
export function initialize(application) {
|
|
// Service-less injection using private properties at a per-project level
|
|
const FormBuilder = application.resolveRegistration('service:form');
|
|
const forms = {
|
|
kv: kv,
|
|
acl: acl,
|
|
token: token,
|
|
policy: policy,
|
|
role: role,
|
|
intention: intention,
|
|
};
|
|
FormBuilder.reopen({
|
|
form: function(name) {
|
|
let form = get(this.forms, name);
|
|
if (!form) {
|
|
form = set(this.forms, name, forms[name](this));
|
|
// only do special things for our new things for the moment
|
|
if (name === 'role' || name === 'policy') {
|
|
const repo = get(this, name);
|
|
form.clear(function(obj) {
|
|
return repo.create(obj);
|
|
});
|
|
form.submit(function(obj) {
|
|
return repo.persist(obj);
|
|
});
|
|
}
|
|
}
|
|
return form;
|
|
},
|
|
});
|
|
}
|
|
|
|
export default {
|
|
initialize,
|
|
};
|