summaryrefslogtreecommitdiffstats
path: root/models
diff options
context:
space:
mode:
Diffstat (limited to 'models')
-rw-r--r--models/attachment.go2
-rw-r--r--models/repo.go6
2 files changed, 4 insertions, 4 deletions
diff --git a/models/attachment.go b/models/attachment.go
index 104ad1d92f..5fd90bef13 100644
--- a/models/attachment.go
+++ b/models/attachment.go
@@ -89,7 +89,7 @@ func NewAttachment(name string, buf []byte, file multipart.File) (_ *Attachment,
func getAttachmentByUUID(e Engine, uuid string) (*Attachment, error) {
attach := &Attachment{UUID: uuid}
- has, err := x.Get(attach)
+ has, err := e.Get(attach)
if err != nil {
return nil, err
} else if !has {
diff --git a/models/repo.go b/models/repo.go
index 2018f4c134..578b54f8a7 100644
--- a/models/repo.go
+++ b/models/repo.go
@@ -1734,15 +1734,15 @@ func GetUserMirrorRepositories(userID int64) ([]*Repository, error) {
}
func getRepositoryCount(e Engine, u *User) (int64, error) {
- return x.Count(&Repository{OwnerID: u.ID})
+ return e.Count(&Repository{OwnerID: u.ID})
}
func getPublicRepositoryCount(e Engine, u *User) (int64, error) {
- return x.Where("is_private = ?", false).Count(&Repository{OwnerID: u.ID})
+ return e.Where("is_private = ?", false).Count(&Repository{OwnerID: u.ID})
}
func getPrivateRepositoryCount(e Engine, u *User) (int64, error) {
- return x.Where("is_private = ?", true).Count(&Repository{OwnerID: u.ID})
+ return e.Where("is_private = ?", true).Count(&Repository{OwnerID: u.ID})
}
// GetRepositoryCount returns the total number of repositories of user.