core/notes.md
2024-08-18 13:57:55 +02:00

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;
}