aboutsummaryrefslogtreecommitdiff
path: root/routers/repo/http.go
diff options
context:
space:
mode:
author无闻 <u@gogs.io>2015-02-17 23:09:53 -0500
committer无闻 <u@gogs.io>2015-02-17 23:09:53 -0500
commit58e28e5d9d0754305179be76aec06e2ae796d915 (patch)
treea16185c28567718c97de6174bd075a28fe8bb1e2 /routers/repo/http.go
parentcd6a2b78a752605d808c6392ce78b92d4759fede (diff)
parentf9454cc32c94780eb4c49753fc0ccd9b60b1deb7 (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.go5
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
+ }
}
}