Browse Source

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

tags/v1.2.0-rc1
Unknwon 10 years ago
parent
commit
37c89d978f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cmd/web.go

+ 1
- 1
cmd/web.go View File

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


// Repository. // Repository.
m.Group("/repo", func() { m.Group("/repo", func() {


Loading…
Cancel
Save