core/notes.md

30 lines
486 B
Markdown
Raw Normal View History

2024-08-18 13:57:55 +02:00
- 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;
}
```