Implement UI enhancements, change password settings, theme toggle, and custom grid size slider
All checks were successful
Automated Container Build / build-and-push (push) Successful in 1m19s

This commit is contained in:
Elijah 2026-05-22 18:22:21 -07:00
parent 425598c278
commit c3b1fe8de1
5 changed files with 226 additions and 26 deletions

View file

@ -128,6 +128,9 @@ func main() {
// Token refresh
protected.Post("/auth/refresh", authHandler.Refresh)
// Password management
protected.Put("/auth/password", authHandler.ChangePassword)
// 2FA management
protected.Post("/auth/2fa/enable", authHandler.Enable2FA)
protected.Post("/auth/2fa/confirm", authHandler.Confirm2FA)