aboutsummaryrefslogtreecommitdiffstats
path: root/teal-src/core/usermanager.d.tl
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2023-03-23 13:36:52 +0100
committerKim Alvefur <zash@zash.se>2023-03-23 13:36:52 +0100
commitf68336b96e0d843511bb1bd3fdac8bba2fe4573a (patch)
treea54111914e081293e50b846e7f0d9654e885c2ed /teal-src/core/usermanager.d.tl
parent738df041ac3965496e9247acc95d80f84d30b2b5 (diff)
downloadprosody-f68336b96e0d843511bb1bd3fdac8bba2fe4573a.tar.gz
prosody-f68336b96e0d843511bb1bd3fdac8bba2fe4573a.zip
teal: Move into prosody namespace
Diffstat (limited to 'teal-src/core/usermanager.d.tl')
-rw-r--r--teal-src/core/usermanager.d.tl46
1 files changed, 0 insertions, 46 deletions
diff --git a/teal-src/core/usermanager.d.tl b/teal-src/core/usermanager.d.tl
deleted file mode 100644
index a546a53c..00000000
--- a/teal-src/core/usermanager.d.tl
+++ /dev/null
@@ -1,46 +0,0 @@
-local Role = require "util.roles".Role;
-
-local record usermanager
- record AuthProvider
- -- TODO
- end
- record AccountInfo
- created : number
- password_updated : any
- enabled : boolean
- end
-
- -- Users
- test_password : function (username : string, host : string, password : string) : boolean
- get_password : function (username : string, host : string) : string, string
- set_password : function (username : string, host : string, password : string) : boolean, string
- get_account_info : function (username : string, host : string) : AccountInfo
- 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
- get_user_role : function (username : string, host : string) : Role
- set_user_role : function (username : string, host : string, role_name : string) : boolean, string
- user_can_assume_role : function (username : string, host : string, role_name : string) : boolean
- add_user_secondary_role : function (username : string, host: string, role_name : string) : boolean, string
- remove_user_secondary_role : function (username : string, host: string, role_name : string) : boolean, string
- get_user_secondary_roles : function (username : string, host : string) : { string : Role }
- get_users_with_role : function (role : string, host : string) : { string }
- get_jid_role : function (jid : string, host : string) : Role
- set_jid_role : function (jid : string, host : string, role_name : string) : boolean
- get_jids_with_role : function (role : string, host : string) : { string }
- get_role_by_name : function (role_name : string) : Role
-
- -- Etc
- get_provider : function (host : string) : AuthProvider
- get_sasl_handler : function (host : string, session : table) : table
- initialize_host : function (host : string)
- new_null_provider : function () : AuthProvider
-end
-
-return usermanager