userpage: implement change password functionality

This commit is contained in:
Harvey Tindall
2023-06-22 20:54:52 +01:00
parent 12ce669566
commit 97db4d714a
9 changed files with 118 additions and 18 deletions

View File

@@ -408,3 +408,8 @@ const (
type GetMyPINDTO struct {
PIN string `json:"pin"`
}
type ChangeMyPasswordDTO struct {
Old string `json:"old"`
New string `json:"new"`
}