From aca908e1e4d08d52a95edca2013c510abe2d1788 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Wed, 6 Jul 2011 10:03:04 -0500 Subject: Fixed HBAC/Sudo rules associations. The HBAC/Sudo rules associations in users, groups, hosts and host groups have been fixed to use the correct associator and method names. Ticket #1438 --- install/ui/user.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'install/ui/user.js') diff --git a/install/ui/user.js b/install/ui/user.js index 9617dec9..9fd14d69 100644 --- a/install/ui/user.js +++ b/install/ui/user.js @@ -119,6 +119,20 @@ IPA.entity_factories.user = function() { associator: IPA.serial_associator, link: link }). + association_facet({ + name: 'memberof_hbacrule', + associator: IPA.serial_associator, + add_method: 'add_user', + remove_method: 'remove_user', + link: link + }). + association_facet({ + name: 'memberof_sudorule', + associator: IPA.serial_associator, + add_method: 'add_user', + remove_method: 'remove_user', + link: link + }). standard_association_facets({ link: link }). -- cgit