diff options
author | KN4CK3R <admin@oldschoolhack.me> | 2022-03-22 08:03:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-22 15:03:22 +0800 |
commit | 80fd25524e13dedbdc3527b32d008de152213a89 (patch) | |
tree | 63b2bfe4ffaf1dce12080cabdc2e845c8731a673 /routers/web/admin/emails.go | |
parent | 5495ba7660979973ba19e304786135da474e0e64 (diff) | |
download | gitea-80fd25524e13dedbdc3527b32d008de152213a89.tar.gz gitea-80fd25524e13dedbdc3527b32d008de152213a89.zip |
Renamed ctx.User to ctx.Doer. (#19161)
Co-authored-by: 6543 <6543@obermui.de>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'routers/web/admin/emails.go')
-rw-r--r-- | routers/web/admin/emails.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/web/admin/emails.go b/routers/web/admin/emails.go index b94f9d72c4..9482ae0123 100644 --- a/routers/web/admin/emails.go +++ b/routers/web/admin/emails.go @@ -87,7 +87,7 @@ func Emails(ctx *context.Context) { emails[i].SearchEmailResult = *baseEmails[i] // Don't let the admin deactivate its own primary email address // We already know the user is admin - emails[i].CanChange = ctx.User.ID != emails[i].UID || !emails[i].IsPrimary + emails[i].CanChange = ctx.Doer.ID != emails[i].UID || !emails[i].IsPrimary } } ctx.Data["Keyword"] = opts.Keyword |