1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00

wip: password resets

This commit is contained in:
Ferdinand Mütsch
2021-04-05 16:25:13 +02:00
parent 1783858854
commit e6e134678a
4 changed files with 301 additions and 0 deletions

View File

@@ -75,3 +75,7 @@ type IUserService interface {
MigrateMd5Password(*models.User, *models.Login) (*models.User, error)
FlushCache()
}
type IMailService interface {
SendPasswordResetMail(recipient *models.User, resetLink string) error
}