Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for groupless (0.09 sec)

  1. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                                }
                            });
                            user.setGroups(groupList.toArray(new String[groupList.size()]));
                            user.setRoles(roleList.toArray(new String[roleList.size()]));
                        }
                    });
    
        }
    
        public void insert(final User user) {
            if (!fessConfig.isLdapAdminEnabled(user.getName())) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  2. cmd/iam-store.go

    func (store *IAMStoreSys) GetGroupDescription(group string) (gd madmin.GroupDesc, err error) {
    	cache := store.rlock()
    	defer store.runlock()
    
    	ps, updatedAt, err := cache.policyDBGet(store, group, true)
    	if err != nil {
    		return gd, err
    	}
    
    	policy := strings.Join(ps, ",")
    
    	if store.getUsersSysType() != MinIOUsersSysType {
    		return madmin.GroupDesc{
    			Name:      group,
    			Policy:    policy,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  3. cmd/iam.go

    	}
    
    	sys.notifyForGroup(ctx, group)
    	return updatedAt, nil
    }
    
    // GetGroupDescription - builds up group description
    func (sys *IAMSys) GetGroupDescription(group string) (gd madmin.GroupDesc, err error) {
    	if !sys.Initialized() {
    		return gd, errServerNotInitialized
    	}
    
    	return sys.store.GetGroupDescription(group)
    }
    
    // ListGroups - lists groups.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top