Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app.go
diff options
context:
space:
mode:
authorJaime Martinez <jmartinez@gitlab.com>2020-05-28 07:50:18 +0300
committerJaime Martinez <jmartinez@gitlab.com>2020-07-06 02:13:51 +0300
commitfb2c26ff998b809baddeb9618aae52c49200bc8b (patch)
tree500310d07317b81acffab5d9efc2f64cf0d01fbf /app.go
parentcac920323f196072c28bee611a4ee9157316cd6f (diff)
Find parent namepsace domain if auth fails for current project
Update labkit
Diffstat (limited to 'app.go')
-rw-r--r--app.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.go b/app.go
index c1af29c2..4ead5003 100644
--- a/app.go
+++ b/app.go
@@ -250,7 +250,7 @@ func (a *theApp) accessControlMiddleware(handler http.Handler) http.Handler {
// Only for projects that have access control enabled
if domain.IsAccessControlEnabled(r) {
// accessControlMiddleware
- if a.Auth.CheckAuthentication(w, r, domain.GetProjectID(r)) {
+ if a.Auth.CheckAuthentication(w, r, domain) {
return
}
}