summaryrefslogtreecommitdiffstats
path: root/install/ui/hbac.js
diff options
context:
space:
mode:
authorEndi Sukma Dewata <edewata@redhat.com>2011-11-16 21:07:20 -0600
committerEndi S. Dewata <edewata@redhat.com>2011-12-06 22:07:52 +0000
commita8ea42bda841c8773d68886614faf9efd38e33bd (patch)
tree92ddaae7ead82784eefb8dde81bc81e91945bfa0 /install/ui/hbac.js
parent6f0c16e4289dd1a68bfd673da52a511087d84b9a (diff)
downloadfreeipa-a8ea42bda841c8773d68886614faf9efd38e33bd.tar.gz
freeipa-a8ea42bda841c8773d68886614faf9efd38e33bd.tar.xz
freeipa-a8ea42bda841c8773d68886614faf9efd38e33bd.zip
Fixed entity metadata resolution.
The current code assumes that an entity will always have a corresponding LDAPObject on the server, so it looks for the metadata in a fixed location. This assumption doesn't work for HBAC Test since it is a Command, not an LDAPObject, so the metadata has to be obtained from a different location. A new method get_default_metadata() has been added to allow each entity to find the metadata from the correct location. Ticket #388
Diffstat (limited to 'install/ui/hbac.js')
-rw-r--r--install/ui/hbac.js15
1 files changed, 9 insertions, 6 deletions
diff --git a/install/ui/hbac.js b/install/ui/hbac.js
index cf13e459e..a65ab3711 100644
--- a/install/ui/hbac.js
+++ b/install/ui/hbac.js
@@ -33,9 +33,10 @@ IPA.hbac.rule_entity = function(spec) {
var that = IPA.entity(spec);
- that.init = function(params) {
+ that.init = function() {
+ that.entity_init();
- params.builder.search_facet({
+ that.builder.search_facet({
search_all: true,
columns: [
'cn',
@@ -60,9 +61,10 @@ IPA.hbac.service_entity = function(spec) {
var that = IPA.entity(spec);
- that.init = function(params) {
+ that.init = function() {
+ that.entity_init();
- params.builder.search_facet({
+ that.builder.search_facet({
columns: [
'cn',
'description'
@@ -125,9 +127,10 @@ IPA.hbac.service_group_entity = function(spec) {
var that = IPA.entity(spec);
- that.init = function(params) {
+ that.init = function() {
+ that.entity_init();
- params.builder.search_facet({
+ that.builder.search_facet({
columns: [
'cn',
'description'