1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Check for access in /repositories/:id (#2227)

* Check for access in /repositories/:id

* Integration test
This commit is contained in:
Ethan Koenig
2017-07-29 18:13:33 -07:00
committed by Lunny Xiao
parent a9cc538ab5
commit 49df677c47
2 changed files with 12 additions and 1 deletions

View File

@@ -293,7 +293,10 @@ func GetByID(ctx *context.APIContext) {
access, err := models.AccessLevel(ctx.User.ID, repo)
if err != nil {
ctx.Error(500, "GetRepositoryByID", err)
ctx.Error(500, "AccessLevel", err)
return
} else if access < models.AccessModeRead {
ctx.Status(404)
return
}
ctx.JSON(200, repo.APIFormat(access))