diff options
author | Joe Chen <jc@unknwon.io> | 2022-10-22 14:56:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-22 14:56:25 +0800 |
commit | 7cbd84d5b3d4af36e4afcf7af9374bc765f6bb9c (patch) | |
tree | 74f4fd7f5df3af0680ddbb16c3c5f1b4985e5eb2 /internal/db/issue_mail.go | |
parent | c502dc6ed888a4cf2c8b36176585f4166536ab6d (diff) |
refactor(db): rename `User.Passwd` to `User.Password` (#7196)
Diffstat (limited to 'internal/db/issue_mail.go')
-rw-r--r-- | internal/db/issue_mail.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/db/issue_mail.go b/internal/db/issue_mail.go index 91d89a41..e1dbb671 100644 --- a/internal/db/issue_mail.go +++ b/internal/db/issue_mail.go @@ -42,7 +42,7 @@ func (this mailerUser) GenerateEmailActivateCode(email string) string { this.user.ID, email, this.user.Name, - this.user.Passwd, + this.user.Password, this.user.Rands, ) } |