summaryrefslogtreecommitdiffstats
path: root/routers/api
diff options
context:
space:
mode:
authorPeter Smit <peter@smitmail.eu>2015-02-16 12:51:56 +0200
committerPeter Smit <peter@smitmail.eu>2015-02-16 12:51:56 +0200
commited89b39984a9191380263eaf357c3a9c71770674 (patch)
tree8fd13622efaef4ae4766634b1c210fbf20727e5d /routers/api
parentcd6a2b78a752605d808c6392ce78b92d4759fede (diff)
downloadgitea-ed89b39984a9191380263eaf357c3a9c71770674.tar.gz
gitea-ed89b39984a9191380263eaf357c3a9c71770674.zip
Updating context and fixing permission issues
The boolean flags in the repo context have been replaced with mode and two methods Also, the permissions have been brought more in line with https://help.github.com/articles/permission-levels-for-an-organization-repository/ , Admin Team members are able to change settings of their repositories.
Diffstat (limited to 'routers/api')
-rw-r--r--routers/api/v1/repo_file.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/api/v1/repo_file.go b/routers/api/v1/repo_file.go
index a049904f95..73f97b2cae 100644
--- a/routers/api/v1/repo_file.go
+++ b/routers/api/v1/repo_file.go
@@ -12,7 +12,7 @@ import (
)
func GetRepoRawFile(ctx *middleware.Context) {
- if ctx.Repo.Repository.IsPrivate && !ctx.Repo.HasAccess {
+ if !ctx.Repo.HasAccess() {
ctx.Error(404)
return
}