summaryrefslogtreecommitdiffstats
path: root/einterfaces/saml.go
diff options
context:
space:
mode:
Diffstat (limited to 'einterfaces/saml.go')
-rw-r--r--einterfaces/saml.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/einterfaces/saml.go b/einterfaces/saml.go
index af2e815a5..478cf8a68 100644
--- a/einterfaces/saml.go
+++ b/einterfaces/saml.go
@@ -10,7 +10,7 @@ import (
type SamlInterface interface {
ConfigureSP() *model.AppError
BuildRequest(relayState string) (*model.SamlAuthRequest, *model.AppError)
- DoLogin(encodedXML string, relayState map[string]string) (*model.User, *model.AppError)
+ DoLogin(encodedXML string, relayState map[string]string, siteURL string) (*model.User, *model.AppError)
GetMetadata() (string, *model.AppError)
}