diff options
Diffstat (limited to 'teal-src/core')
-rw-r--r-- | teal-src/core/usermanager.d.tl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/teal-src/core/usermanager.d.tl b/teal-src/core/usermanager.d.tl index 23bec060..a546a53c 100644 --- a/teal-src/core/usermanager.d.tl +++ b/teal-src/core/usermanager.d.tl @@ -18,6 +18,9 @@ local record usermanager user_exists : function (username : string, host : string) : boolean create_user : function (username : string, password : string, host : string) : boolean, string delete_user : function (username : string, host : string) : boolean, string + user_is_enabled : function (username : string, host : string) : boolean, string + enable_user : function (username : string, host : string) : boolean, string + disable_user : function (username : string, host : string) : boolean, string users : function (host : string) : function () : string -- Roles |