- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for newGlobalAuthNPluginFn (0.14 sec)
-
cmd/globals.go
// Indicates if server was started as `--address ":0"` globalDynamicAPIPort bool // Add new variable global values here. ) var globalAuthPluginMutex sync.Mutex func newGlobalAuthNPluginFn() *idplugin.AuthNPlugin { globalAuthPluginMutex.Lock() defer globalAuthPluginMutex.Unlock() return globalAuthNPlugin } func newGlobalAuthZPluginFn() *polplugin.AuthZPlugin {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 03 18:23:41 UTC 2024 - 16.2K bytes - Viewed (0) -
cmd/iam.go
// From OpenID if riMap := sys.OpenIDConfig.GetRoleInfo(); riMap != nil { sys.validateAndAddRolePolicyMappings(ctx, riMap) } // From AuthN plugin if enabled. if authn := newGlobalAuthNPluginFn(); authn != nil { riMap := authn.GetRoleInfo() sys.validateAndAddRolePolicyMappings(ctx, riMap) } // Load IAM data from storage. for { if err := sys.Load(retryCtx, true); err != nil {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 29 16:01:48 UTC 2024 - 74.6K bytes - Viewed (0)