mirror of
https://github.com/mattermost/mattermost.git
synced 2026-04-11 20:17:04 -04:00
17 lines
696 B
Go
17 lines
696 B
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package einterfaces
|
|
|
|
import (
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
"github.com/mattermost/mattermost/server/public/shared/request"
|
|
)
|
|
|
|
type SamlInterface interface {
|
|
ConfigureSP(c request.CTX) error
|
|
BuildRequest(c request.CTX, relayState string) (*model.SamlAuthRequest, *model.AppError)
|
|
DoLogin(c request.CTX, encodedXML string, relayState map[string]string) (*model.User, *model.AppError)
|
|
GetMetadata(c request.CTX) (string, *model.AppError)
|
|
CheckProviderAttributes(c request.CTX, SS *model.SamlSettings, ouser *model.User, patch *model.UserPatch) string
|
|
}
|