summaryrefslogtreecommitdiff
path: root/ui/app/lib/bitmask.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/lib/bitmask.js')
-rw-r--r--ui/app/lib/bitmask.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/lib/bitmask.js b/ui/app/lib/bitmask.js
index 823504d..f388e95 100644
--- a/ui/app/lib/bitmask.js
+++ b/ui/app/lib/bitmask.js
@@ -143,11 +143,11 @@ var bitmask = function(){
* @param {boolean} autoconf If the provider should be autoconfigured if it's not allready known
* If it's not provided it will default to false
*/
- create: function(uid, password, autoconf) {
+ create: function(uid, password, invite, autoconf) {
if (typeof autoconf !== 'boolean') {
autoconf = false;
}
- return call(['bonafide', 'user', 'create', uid, password, autoconf]);
+ return call(['bonafide', 'user', 'create', uid, password, invite, autoconf]);
},
/**