Change username setting (#190)

This commit is contained in:
Thomas Miceli
2024-01-01 23:45:19 +01:00
parent 5058ca8f27
commit 97707f7cca
4 changed files with 147 additions and 87 deletions

View File

@ -222,6 +222,7 @@ func NewServer(isDev bool) *Server {
g1.POST("/settings/ssh-keys", sshKeysProcess, logged)
g1.DELETE("/settings/ssh-keys/:id", sshKeysDelete, logged)
g1.PUT("/settings/password", passwordProcess, logged)
g1.PUT("/settings/username", usernameProcess, logged)
g2 := g1.Group("/admin-panel")
{