diff options
author | 无闻 <u@gogs.io> | 2015-02-17 23:09:53 -0500 |
---|---|---|
committer | 无闻 <u@gogs.io> | 2015-02-17 23:09:53 -0500 |
commit | 58e28e5d9d0754305179be76aec06e2ae796d915 (patch) | |
tree | a16185c28567718c97de6174bd075a28fe8bb1e2 /routers/repo/http.go | |
parent | cd6a2b78a752605d808c6392ce78b92d4759fede (diff) | |
parent | f9454cc32c94780eb4c49753fc0ccd9b60b1deb7 (diff) |
Merge pull request #958 from phsmit/fix_mirror_access
Make sure that a mirror can't be written to by http or ssh
Diffstat (limited to 'routers/repo/http.go')
-rw-r--r-- | routers/repo/http.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/routers/repo/http.go b/routers/repo/http.go index 034b5a7b..d47d73ef 100644 --- a/routers/repo/http.go +++ b/routers/repo/http.go @@ -158,6 +158,11 @@ func Http(ctx *middleware.Context) { return } } + + if !isPull && repo.IsMirror { + ctx.Handle(401, "can't push to mirror", nil) + return + } } } |