Replaced one-pager with multiple pages and fixed security bugs

This commit is contained in:
Jan Meinl
2026-05-16 21:10:55 +02:00
parent 802906f9d4
commit 68034dea7d
25 changed files with 2311 additions and 1217 deletions
+6 -5
View File
@@ -1,11 +1,12 @@
package main
type User struct {
ID int64 `json:"id"`
Username string `json:"username"`
DisplayName string `json:"display_name"`
Language string `json:"language"`
IsSystemAdmin bool `json:"is_system_admin"`
ID int64 `json:"id"`
Username string `json:"username"`
DisplayName string `json:"display_name"`
Language string `json:"language"`
IsSystemAdmin bool `json:"is_system_admin"`
MustChangePassword bool `json:"must_change_password"`
}
type Competition struct {