summaryrefslogtreecommitdiffstats
path: root/modules/doctor
diff options
context:
space:
mode:
Diffstat (limited to 'modules/doctor')
-rw-r--r--modules/doctor/dbconsistency.go5
-rw-r--r--modules/doctor/storage.go4
2 files changed, 5 insertions, 4 deletions
diff --git a/modules/doctor/dbconsistency.go b/modules/doctor/dbconsistency.go
index 040f73abcd..e5f0c5678d 100644
--- a/modules/doctor/dbconsistency.go
+++ b/modules/doctor/dbconsistency.go
@@ -10,6 +10,7 @@ import (
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/models/db"
"code.gitea.io/gitea/models/migrations"
+ repo_model "code.gitea.io/gitea/models/repo"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/setting"
)
@@ -110,8 +111,8 @@ func checkDBConsistency(logger log.Logger, autofix bool) error {
// find attachments without existing issues or releases
{
Name: "Orphaned Attachments without existing issues or releases",
- Counter: models.CountOrphanedAttachments,
- Fixer: asFixer(models.DeleteOrphanedAttachments),
+ Counter: repo_model.CountOrphanedAttachments,
+ Fixer: asFixer(repo_model.DeleteOrphanedAttachments),
},
// find null archived repositories
{
diff --git a/modules/doctor/storage.go b/modules/doctor/storage.go
index cb06d66204..d2b7f5ee13 100644
--- a/modules/doctor/storage.go
+++ b/modules/doctor/storage.go
@@ -5,7 +5,7 @@
package doctor
import (
- "code.gitea.io/gitea/models"
+ repo_model "code.gitea.io/gitea/models/repo"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/storage"
)
@@ -21,7 +21,7 @@ func checkAttachmentStorageFiles(logger log.Logger, autofix bool) error {
if err != nil {
return err
}
- exist, err := models.ExistAttachmentsByUUID(stat.Name())
+ exist, err := repo_model.ExistAttachmentsByUUID(stat.Name())
if err != nil {
return err
}