feat: change user password

This commit is contained in:
2026-08-29 17:23:25 +02:00
parent 67f5d43a58
commit dc71ff4332
5 changed files with 97 additions and 9 deletions
+4
View File
@@ -5,3 +5,7 @@ type CreateUserPayload struct {
Name string `json:"name"`
Password string `json:"password"`
}
type ChangePasswordPayload struct {
Password string `json:"password"`
}