From 689fd30b522c1bb77bb6e087bdfca940553fe495 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Thu, 7 Apr 2011 16:14:58 -0500 Subject: Refactored builder interface. The IPA.entity_builder has been modified to take a 'factory' parameter in custom facet's and custom dialog's spec. The IPA.dialog has been modified to take an array of fields in the spec. The IPA.search_facet has been modified to take an array of columns in the spec. --- install/ui/group.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'install/ui/group.js') diff --git a/install/ui/group.js b/install/ui/group.js index 7c7488f1..fb07a8cb 100644 --- a/install/ui/group.js +++ b/install/ui/group.js @@ -47,8 +47,8 @@ IPA.entity_factories.group = function () { name:'details', fields:['cn','description','gidnumber'] }]}). - facet( IPA.association_facet({ - 'name': 'member_user', + association_facet({ + name: 'member_user', columns:[ { name: 'uid', @@ -72,7 +72,7 @@ IPA.entity_factories.group = function () { } ] - })). + }). association_facet({ name: 'memberof_group', associator: IPA.serial_associator -- cgit