Annotate

teal-src/util/struct.d.tl @ 12646:3f38f4735c7a

usermanager, mod_auth_*: Add get_account_info() returning creation/update time This is useful for a number of things. For example, listing users that need to rotate their passwords after some event. It also provides a safer way for code to determine that a user password has changed without needing to set a handler for the password change event (which is a more fragile approach).
author Matthew Wild <mwild1@gmail.com>
date Tue, 12 Jul 2022 13:14:47 +0100
parent 12619:d593cb709525
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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