Mercurial > prosody-hg
annotate teal-src/util/struct.d.tl @ 12658:7ca5645f46cd
usermanager: Remove concept of global authz provider
Rationale:
- Removes a bunch of code!
- We don't have many cases where an actor is not bound to one of our hosts
- A notable exception is the admin shell, but if we ever attempt to lock those
sessions down, there is a load of other work that also has to be done. And
it's not clear if we would need a global authz provider for that anyway.
- Removes an extra edge case from the necessary mental model for operators
- Sessions that aren't bound to a host generally are anonymous or have an
alternative auth model (such as by IP addres).
- With the encapsulation now provided by util.roles, ad-hoc "detached roles"
can still be created anyway by code that needs them.
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Fri, 12 Aug 2022 16:21:57 +0100 |
| parents | d593cb709525 |
| children |
| rev | line source |
|---|---|
|
12619
d593cb709525
util.struct: Add Teal interface description file
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
1 local record lib |
|
d593cb709525
util.struct: Add Teal interface description file
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
2 pack : function (string, ...:any) : string |
|
d593cb709525
util.struct: Add Teal interface description file
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
3 unpack : function(string, string, integer) : any... |
|
d593cb709525
util.struct: Add Teal interface description file
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
4 size : function(string) : integer |
|
d593cb709525
util.struct: Add Teal interface description file
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
5 end |
|
d593cb709525
util.struct: Add Teal interface description file
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
6 return lib |
