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
diff options
context:
space:
mode:
Diffstat (limited to 'internal/mocks/mocks.go')
-rw-r--r--internal/mocks/mocks.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/internal/mocks/mocks.go b/internal/mocks/mocks.go
index b18bede4..7bf9562c 100644
--- a/internal/mocks/mocks.go
+++ b/internal/mocks/mocks.go
@@ -122,6 +122,16 @@ func (m *MockAuth) RequireAuth(w http.ResponseWriter, r *http.Request) bool {
return ret0
}
+// AuthorizationMiddleware handles authorization
+func (m *MockAuth) AuthorizationMiddleware(handler http.Handler) http.Handler {
+ return handler
+}
+
+// CheckAuthenticationWithoutProject checks if user is authenticated and has a valid token
+func (a *Auth) CheckAuthenticationWithoutProject(w http.ResponseWriter, r *http.Request, domain domain) bool {
+ return false
+}
+
// RequireAuth indicates an expected call of RequireAuth.
func (mr *MockAuthMockRecorder) RequireAuth(w, r interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()