members minor bugfixes.

This commit is contained in:
Miroslav Šedivý
2021-03-14 14:44:03 +01:00
parent 8f277c61c9
commit 4898cecd56
4 changed files with 25 additions and 27 deletions

View File

@ -19,7 +19,7 @@ type MemberManager interface {
Insert(username string, password string, profile MemberProfile) (string, error)
Select(id string) (MemberProfile, error)
SelectAll(limit int, offset int) (map[string]MemberProfile, error)
Update(id string, profile MemberProfile) error
UpdateProfile(id string, profile MemberProfile) error
UpdatePassword(id string, passwrod string) error
Delete(id string) error
}