diff options
Diffstat (limited to 'kamailio-controller.lua')
-rw-r--r-- | kamailio-controller.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/kamailio-controller.lua b/kamailio-controller.lua index 985eb39..7f7073c 100644 --- a/kamailio-controller.lua +++ b/kamailio-controller.lua @@ -46,7 +46,9 @@ end -- Use acf-db to allow editing of the database dbcontrollerfunctions = require("dbcontrollerfunctions") for n,f in pairs(dbcontrollerfunctions) do - mymodule[n] = f + if n ~= "listdatabases" then + mymodule[n] = f + end end return mymodule |