This commit is contained in:
Miroslav Šedivý
2021-03-14 20:26:58 +01:00
parent 85bb26d77c
commit 900ae006b8
4 changed files with 8 additions and 8 deletions

View File

@ -61,7 +61,7 @@ func (provider *MemberProviderCtx) Insert(username string, password string, prof
entries[id] = MemberEntry{
// TODO: Use hash function.
Password: password,
Profile: profile,
Profile: profile,
}
return id, provider.serialize(entries)

View File

@ -36,7 +36,7 @@ func New(sessions types.SessionManager, config *config.Member) *MemberManagerCtx
default:
manager.provider = dummy.New()
}
return manager
}

View File

@ -83,7 +83,7 @@ func (provider *MemberProviderCtx) Insert(username string, password string, prof
provider.entries[id] = &MemberEntry{
// TODO: Use hash function.
Password: password,
Profile: profile,
Profile: profile,
}
return id, nil