aboutsummaryrefslogtreecommitdiff
path: root/internal/context/repo.go
diff options
context:
space:
mode:
authorJoe Chen <jc@unknwon.io>2022-06-25 18:07:39 +0800
committerGitHub <noreply@github.com>2022-06-25 18:07:39 +0800
commit083c3ee659c6c5542687f3bafae68cbc24dbc90f (patch)
tree0103bf3b5c5ebfccd368a7cb6a425a521fd669d9 /internal/context/repo.go
parent9df4e3ae3c555a86f691f0d78a43834842e77d8b (diff)
db: refactor "action" table to use GORM (#7054)
Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
Diffstat (limited to 'internal/context/repo.go')
-rw-r--r--internal/context/repo.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/context/repo.go b/internal/context/repo.go
index 41fc6f7a..3b4b3281 100644
--- a/internal/context/repo.go
+++ b/internal/context/repo.go
@@ -18,6 +18,7 @@ import (
"gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/db"
+ "gogs.io/gogs/internal/repoutil"
)
type PullRequest struct {
@@ -43,7 +44,7 @@ type Repository struct {
TreePath string
CommitID string
RepoLink string
- CloneLink db.CloneLink
+ CloneLink repoutil.CloneLink
CommitsCount int64
Mirror *db.Mirror