summaryrefslogtreecommitdiffstats
path: root/utils/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'utils/config.go')
-rw-r--r--utils/config.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/utils/config.go b/utils/config.go
index b90337b7e..6a428a5c1 100644
--- a/utils/config.go
+++ b/utils/config.go
@@ -253,3 +253,14 @@ func IsS3Configured() bool {
return true
}
+
+func GetAllowedAuthServices() []string {
+ authServices := []string{}
+ for name, service := range Cfg.SSOSettings {
+ if service.Allow {
+ authServices = append(authServices, name)
+ }
+ }
+
+ return authServices
+}