diff options
author | Endi Sukma Dewata <edewata@redhat.com> | 2011-12-19 18:31:35 -0600 |
---|---|---|
committer | Petr Vobornik <pvoborni@redhat.com> | 2012-01-10 18:42:26 +0100 |
commit | 74e31cd9853539f860f68e813191083e46a1192b (patch) | |
tree | 0e4914c06c68bd839d4b20897b5273f7c4ded06d /install/ui/hbac.js | |
parent | 0e037f24ce59752713d8291eae30403cb864c758 (diff) | |
download | freeipa-74e31cd9853539f860f68e813191083e46a1192b.tar.gz freeipa-74e31cd9853539f860f68e813191083e46a1192b.tar.xz freeipa-74e31cd9853539f860f68e813191083e46a1192b.zip |
Added policies into user details page.
The user details page has been modified to show the password policy
and Kerberos ticket policy that apply to the user. The policies are
currently displayed as read-only.
Ticket #703
Diffstat (limited to 'install/ui/hbac.js')
-rw-r--r-- | install/ui/hbac.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install/ui/hbac.js b/install/ui/hbac.js index 3346d0b01..d26b894b4 100644 --- a/install/ui/hbac.js +++ b/install/ui/hbac.js @@ -513,11 +513,11 @@ IPA.hbacrule_details_facet = function(spec) { var that = IPA.details_facet(spec); - that.on_update_success = function(data, text_status, xhr) { + that.update_on_success = function(data, text_status, xhr) { that.refresh(); }; - that.on_update_error = function(xhr, text_status, error_thrown) { + that.update_on_error = function(xhr, text_status, error_thrown) { that.refresh(); }; |