mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.roles: Add Teal interface declaration
This commit is contained in:
parent
1fac00b2af
commit
2b0676396d
1 changed files with 32 additions and 0 deletions
32
teal-src/util/roles.d.tl
Normal file
32
teal-src/util/roles.d.tl
Normal file
|
@ -0,0 +1,32 @@
|
|||
local record util_roles
|
||||
|
||||
type context = any
|
||||
|
||||
record Role
|
||||
id : string
|
||||
name : string
|
||||
description : string
|
||||
default : boolean
|
||||
priority : number -- or integer?
|
||||
permissions : { string : boolean }
|
||||
|
||||
may : function (Role, string, context)
|
||||
clone : function (Role, role_config)
|
||||
set_permission : function (Role, string, boolean, boolean)
|
||||
end
|
||||
|
||||
is_role : function (any) : boolean
|
||||
|
||||
record role_config
|
||||
name : string
|
||||
description : string
|
||||
default : boolean
|
||||
priority : number -- or integer?
|
||||
inherits : { Role }
|
||||
permissions : { string : boolean }
|
||||
end
|
||||
|
||||
new : function (role_config, Role) : Role
|
||||
end
|
||||
|
||||
return util_roles
|
Loading…
Add table
Add a link
Reference in a new issue