From f85771b2a7117c8870d800ee863ccf10fe0b13c3 Mon Sep 17 00:00:00 2001 From: Adam Young Date: Mon, 31 Jan 2011 17:24:42 -0500 Subject: aci association fixes declarative priv definition fixes role_add_privilege and privilege_add_permisison --- install/ui/entity.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'install/ui/entity.js') diff --git a/install/ui/entity.js b/install/ui/entity.js index 82af8234..4a8971d3 100644 --- a/install/ui/entity.js +++ b/install/ui/entity.js @@ -204,7 +204,14 @@ IPA.entity = function (spec) { }; if (config){ - spec.associator = config.associator; + for (var key in config){ + /*name is special, as iut has already been munged + into the association name */ + if (key === "name"){ + continue; + } + spec[key] = config[key] ; + } } facet = IPA.association_facet(spec); -- cgit