aboutsummaryrefslogtreecommitdiffstats
path: root/routers/api/v1/repo/repo.go
diff options
context:
space:
mode:
authorEthan Koenig <etk39@cornell.edu>2017-07-11 21:23:41 -0400
committerKim "BKC" Carlbäcker <kim.carlbacker@gmail.com>2017-07-12 03:23:41 +0200
commit93a1de48428c2f89502cf6bba80f3976c6f5839f (patch)
tree8d08276df62513a32f0c0573b3e388bb823454ef /routers/api/v1/repo/repo.go
parentda89afda58e18700ee49f955de3f33fdc591c239 (diff)
downloadgitea-93a1de48428c2f89502cf6bba80f3976c6f5839f.tar.gz
gitea-93a1de48428c2f89502cf6bba80f3976c6f5839f.zip
Fix repo API bug (#2133)
Don't require token when not necessary
Diffstat (limited to 'routers/api/v1/repo/repo.go')
-rw-r--r--routers/api/v1/repo/repo.go8
1 files changed, 1 insertions, 7 deletions
diff --git a/routers/api/v1/repo/repo.go b/routers/api/v1/repo/repo.go
index 7fb828ddbc..178f1005e5 100644
--- a/routers/api/v1/repo/repo.go
+++ b/routers/api/v1/repo/repo.go
@@ -267,13 +267,7 @@ func Get(ctx *context.APIContext) {
// 200: Repository
// 500: error
- repo := ctx.Repo.Repository
- access, err := models.AccessLevel(ctx.User.ID, repo)
- if err != nil {
- ctx.Error(500, "GetRepository", err)
- return
- }
- ctx.JSON(200, repo.APIFormat(access))
+ ctx.JSON(200, ctx.Repo.Repository.APIFormat(ctx.Repo.AccessMode))
}
// GetByID returns a single Repository