summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/association.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/src/freeipa/association.js')
-rw-r--r--install/ui/src/freeipa/association.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/install/ui/src/freeipa/association.js b/install/ui/src/freeipa/association.js
index b78903ad7..87a0570e6 100644
--- a/install/ui/src/freeipa/association.js
+++ b/install/ui/src/freeipa/association.js
@@ -133,6 +133,7 @@ IPA.bulk_associator = function(spec) {
spec = spec || {};
var that = IPA.associator(spec);
+ that.options = spec.options || { 'all': true };
that.execute = function() {
@@ -145,7 +146,7 @@ IPA.bulk_associator = function(spec) {
entity: that.entity.name,
method: that.method,
args: [that.pkey],
- options: { 'all': true },
+ options: that.options,
on_success: that.on_success,
on_error: that.on_error
});