summaryrefslogtreecommitdiffstats
path: root/modules/lfs/locks.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/lfs/locks.go')
-rw-r--r--modules/lfs/locks.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/lfs/locks.go b/modules/lfs/locks.go
index 9ffe6b9d59..b077cd2d0b 100644
--- a/modules/lfs/locks.go
+++ b/modules/lfs/locks.go
@@ -110,7 +110,7 @@ func GetListLockHandler(ctx *context.Context) {
}
//If no query params path or id
- lockList, err := models.GetLFSLockByRepoID(repository.ID)
+ lockList, err := models.GetLFSLockByRepoID(repository.ID, 0, 0)
if err != nil {
ctx.JSON(500, api.LFSLockError{
Message: "unable to list locks : " + err.Error(),
@@ -220,7 +220,7 @@ func VerifyLockHandler(ctx *context.Context) {
}
//TODO handle body json cursor and limit
- lockList, err := models.GetLFSLockByRepoID(repository.ID)
+ lockList, err := models.GetLFSLockByRepoID(repository.ID, 0, 0)
if err != nil {
ctx.JSON(500, api.LFSLockError{
Message: "unable to list locks : " + err.Error(),