1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-05 18:17:19 +00:00

Fix bug that collaborators are able to modify settings of repository

This commit is contained in:
Unknown
2014-07-04 01:25:06 -04:00
parent cdffdeddc9
commit 36292060d6
2 changed files with 3 additions and 3 deletions

View File

@ -260,7 +260,7 @@ func RepoAssignment(redirect bool, args ...bool) martini.Handler {
}
}
func RequireOwner() martini.Handler {
func RequireTrueOwner() martini.Handler {
return func(ctx *Context) {
if !ctx.Repo.IsTrueOwner {
if !ctx.IsSigned {