- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for MergePolicies (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
cmd/iam-store.go
} } return strings.Join(policies, ","), policy.MergePolicies(toMerge...) } // MergePolicies - accepts a comma separated list of policy names as a string // and returns only policies that currently exist in MinIO. It includes hot loading // of policies if not in the memory func (store *IAMStoreSys) MergePolicies(policyName string) (string, policy.Policy) { var policies []string
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 87.1K bytes - Click Count (0) -
cmd/iam.go
// policies which exist on MinIO corresponding to the input. func (sys *IAMSys) CurrentPolicies(policyName string) string { if !sys.Initialized() { return "" } policies, _ := sys.store.MergePolicies(policyName) return policies } func (sys *IAMSys) notifyForUser(ctx context.Context, accessKey string, isTemp bool) { // Notify all other MinIO peers to reload user. if !sys.HasWatcher() {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Wed Oct 15 17:00:45 GMT 2025 - 76.5K bytes - Click Count (0)