486 B
486 B
-
siehe
~/projekte/linke/sonstiges/authelia-callbacks
-
Espe macht HTTP-Request zu
callbacks.authelia.linke.sx
mit Nutzerliste als Rumpf (Authentifizierung?) -
submit
- timestamp
- userlist
- authhash (
sha256(timestamp+secret)
)
type type_data = Record<
string,
{
disabled : boolean;
displayname : string;
email : string;
groups : Array<string>;
password : string;
}
>;
type type_payload = {
timestamp : int;
authhash : string;
data : type_data;
}