Annotate
teal-src/util/array.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 |
12611:33b7e7bd83fd |
rev |
line source |
12611
|
1 local record array_t<T>
|
|
2 { T }
|
|
3 end
|
|
4
|
|
5 local record lib
|
|
6 metamethod __call : function () : array_t
|
|
7 end
|
|
8
|
|
9 return lib
|