Browse Source

Add X-Total-Count on /repos/{owner]/{repo}/pulls API (#11113)

Co-authored-by: techknowlogick <techknowlogick@gitea.io>
for-closed-social
CirnoT 4 years ago
committed by GitHub
parent
commit
38d5f88a81
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      routers/api/v1/repo/pull.go

+ 1
- 0
routers/api/v1/repo/pull.go View File

@ -113,6 +113,7 @@ func ListPullRequests(ctx *context.APIContext, form api.ListPullRequestsOptions)
}
ctx.SetLinkHeader(int(maxResults), listOptions.PageSize)
ctx.Header().Set("X-Total-Count", fmt.Sprintf("%d", maxResults))
ctx.JSON(http.StatusOK, &apiPrs)
}

Loading…
Cancel
Save