Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getPolicies (0.05 sec)

  1. cmd/iam-store.go

    	}
    	if store.policy != nil {
    		val, err, _ := store.policy.Do(name, func() (any, error) {
    			return getPolicies()
    		})
    		if err != nil {
    			return nil, err
    		}
    		res, ok := val.([]string)
    		if !ok {
    			return nil, errors.New("unexpected policy type")
    		}
    		return res, nil
    	}
    	return getPolicies()
    }
    
    // AddUsersToGroup - adds users to group, creating the group if needed.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 86.7K bytes
    - Viewed (0)
  2. cmd/iam.go

    		// present in the session token.
    		if len(policies) == 0 {
    			// If there is no parent policy mapping, we fall back to
    			// using policy claim from JWT.
    			policySet, ok := args.GetPolicies(iamPolicyClaimNameOpenID())
    			if !ok {
    				// When claims are set, it should have a policy claim field.
    				return false
    			}
    			policies = policySet.ToSlice()
    		}
    	}
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 75.3K bytes
    - Viewed (0)
  3. cmd/admin-handlers-users.go

    		if err != nil {
    			writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    			return
    		}
    		if len(policiesNames) == 0 {
    			policySet, _ := args.GetPolicies(iamPolicyClaimNameOpenID())
    			policiesNames = policySet.ToSlice()
    		}
    
    		stsAccountPolicy = globalIAMSys.GetCombinedPolicy(policiesNames...)
    	}
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 90.6K bytes
    - Viewed (0)
Back to top