Browse Source

#1101 Anyone can see organization pages even without logging in when sign in required

pull/1144/head
Unknwon 10 years ago
parent
commit
27c3c5415f
  1. 2
      cmd/web.go

2
cmd/web.go

@ -372,7 +372,7 @@ func runWeb(ctx *cli.Context) {
}, reqSignIn)
m.Group("/org", func() {
m.Get("/:org", org.Home)
}, middleware.OrgAssignment(true))
}, ignSignIn, middleware.OrgAssignment(true))
// Repository.
m.Group("/repo", func() {

Loading…
Cancel
Save