From ecd5b4b23c53e816d64eb228972f745400307365 Mon Sep 17 00:00:00 2001 From: reality Date: Sat, 20 Apr 2013 16:34:02 +0000 Subject: [PATCH] getallusers external --- modules/users/api.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/users/api.js b/modules/users/api.js index bfec8d5..d894f4c 100644 --- a/modules/users/api.js +++ b/modules/users/api.js @@ -145,6 +145,9 @@ var api = function(dbot) { api['getChannel'].external = true; api['getChannel'].extMap = [ 'server', 'channel', 'callback' ]; + api['getAllUsers'].external = true; + api['getAllUsers'].extMap = [ 'callback' ]; + return api; };