summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2011-09-16 10:48:18 -0500
committerEndi S. Dewata <edewata@redhat.com>2011-09-21 22:15:10 +0000
commitff94bbe16bba0debf6713ec395762c3cadc4fff6 (patch)
tree937e3eabd44b1b3d30c05961dac17b7bbd91b3f2
parentb2a3c6e0934b10dd3bf96d54746e1ab783da0cc9 (diff)
downloadfreeipa-ff94bbe16bba0debf6713ec395762c3cadc4fff6.tar.gz
freeipa-ff94bbe16bba0debf6713ec395762c3cadc4fff6.tar.xz
freeipa-ff94bbe16bba0debf6713ec395762c3cadc4fff6.zip
Removed HBAC rule type.
HBAC rule type has been removed from the list page and details page because it is no longer supported in IPA 3.0. Ticket #1795
-rw-r--r--install/ui/hbac.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/install/ui/hbac.js b/install/ui/hbac.js
index bcc7c135..53a4edcb 100644
--- a/install/ui/hbac.js
+++ b/install/ui/hbac.js
@@ -30,19 +30,6 @@ IPA.entity_factories.hbacrule = function() {
search_all: true,
columns: [
'cn',
- {
- factory: IPA.column,
- name: 'accessruletype',
- setup: function(container, record) {
- container.empty();
- var value = record[this.name];
- value = value ? value.toString() : '';
- if (value === 'deny') {
- container.addClass('hbac-deny-rule');
- }
- container.append(value);
- }
- },
'ipaenabledflag',
'description'
]
@@ -153,10 +140,6 @@ IPA.hbacrule_details_facet = function(spec) {
name: 'cn',
read_only: true
});
- section.text({
- name: 'accessruletype',
- read_only: true
- });
section.textarea({
name: 'description'
});