aboutsummaryrefslogtreecommitdiffstats
path: root/modules/auth/sso/interface.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/auth/sso/interface.go')
-rw-r--r--modules/auth/sso/interface.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/auth/sso/interface.go b/modules/auth/sso/interface.go
index 5f7089a2da..c957fad02f 100644
--- a/modules/auth/sso/interface.go
+++ b/modules/auth/sso/interface.go
@@ -40,5 +40,5 @@ type SingleSignOn interface {
// or a new user object (with id = 0) populated with the information that was found
// in the authentication data (username or email).
// Returns nil if verification fails.
- VerifyAuthData(http *http.Request, store DataStore, sess SessionStore) *models.User
+ VerifyAuthData(http *http.Request, w http.ResponseWriter, store DataStore, sess SessionStore) *models.User
}