Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getParentUsers (1.43 sec)

  1. cmd/iam-store.go

    func (store *IAMStoreSys) GetAllParentUsers() map[string]ParentUserInfo {
    	cache := store.rlock()
    	defer store.runlock()
    
    	return store.getParentUsers(cache)
    }
    
    // assumes store is locked by caller.
    func (store *IAMStoreSys) getParentUsers(cache *iamCache) map[string]ParentUserInfo {
    	res := map[string]ParentUserInfo{}
    	for _, ui := range cache.iamUsersMap {
    		cred := ui.Credentials
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Oct 14 16:35:37 UTC 2024
    - 83.2K bytes
    - Viewed (0)
Back to top