[MM-57085] Remove UseNewSAMLLibrary experimental setting (#26392)

Co-authored-by: Mattermost Build <build@mattermost.com>
Этот коммит содержится в:
Ben Schumacher
2024-04-05 16:56:01 +02:00
коммит произвёл GitHub
родитель dc3e5b9269
Коммит c5cf4101da
10 изменённых файлов: 26 добавлений и 52 удалений

Просмотреть файл

@@ -74,10 +74,10 @@ func RegisterCloudInterface(f func(*Server) einterfaces.CloudInterface) {
cloudInterface = f
}
var samlInterfaceNew func(*App) einterfaces.SamlInterface
var samlInterface func(*App) einterfaces.SamlInterface
func RegisterNewSamlInterface(f func(*App) einterfaces.SamlInterface) {
samlInterfaceNew = f
func RegisterSamlInterface(f func(*App) einterfaces.SamlInterface) {
samlInterface = f
}
var notificationInterface func(*App) einterfaces.NotificationInterface