diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2021-11-18 13:58:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-18 13:58:42 +0800 |
commit | 3c3855a05c79ccc7a8495cdbf4a361e7bef74248 (patch) | |
tree | 43f8616bca25a09c0e284e9407819ba43a6a0d79 /models/consistency.go | |
parent | 6874fe90e591fa1bfb4b0575b27d876ab544e6e0 (diff) | |
download | gitea-3c3855a05c79ccc7a8495cdbf4a361e7bef74248.tar.gz gitea-3c3855a05c79ccc7a8495cdbf4a361e7bef74248.zip |
Move user functions into user.go (#17659)
* Move user functions into user.go
* Fix test
Diffstat (limited to 'models/consistency.go')
-rw-r--r-- | models/consistency.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/models/consistency.go b/models/consistency.go index d7bf8ade57..83cfbd0e49 100644 --- a/models/consistency.go +++ b/models/consistency.go @@ -5,6 +5,7 @@ package models import ( + admin_model "code.gitea.io/gitea/models/admin" "code.gitea.io/gitea/models/db" "xorm.io/builder" @@ -127,7 +128,7 @@ func DeleteOrphanedIssues() error { // Remove issue attachment files. for i := range attachmentPaths { - removeAllWithNotice(db.GetEngine(db.DefaultContext), "Delete issue attachment", attachmentPaths[i]) + admin_model.RemoveAllWithNoticeCtx(db.DefaultContext, "Delete issue attachment", attachmentPaths[i]) } return nil } |