summaryrefslogtreecommitdiffstats
path: root/install/ui/details.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/details.js')
-rw-r--r--install/ui/details.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/install/ui/details.js b/install/ui/details.js
index 794e19fd2..0a22c1773 100644
--- a/install/ui/details.js
+++ b/install/ui/details.js
@@ -572,9 +572,9 @@ IPA.details_refresh = function() {
that.pkey = $.bbq.getState(that.entity_name + '-pkey', true) ;
var command = IPA.command({
- method: that.entity_name+'_show',
- args: [],
- options: { 'all': true, 'rights': true }
+ entity: that.entity_name,
+ method: 'show',
+ options: { all: true, rights: true }
});
if (IPA.details_refresh_devel_hook){
@@ -671,7 +671,8 @@ IPA.details_update = function(on_win, on_fail) {
var args = pkey ? [pkey] : [];
var command = IPA.command({
- method: entity_name+'_mod',
+ entity: entity_name,
+ method: 'mod',
args: args,
options: modlist,
on_success: on_success,