Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for manipulation (0.17 sec)

  1. cmd/site-replication.go

    			_, err = globalIAMSys.SetGroupStatus(ctx, updReq.Group, updReq.Status == madmin.GroupEnabled)
    		} else {
    			if globalIAMSys.LDAPConfig.Enabled() {
    				// We don't allow internal group manipulation in this API when
    				// LDAP is enabled for now (both sites must have LDAP disabled).
    				err = errIAMActionNotAllowed
    			} else {
    				_, err = globalIAMSys.AddUsersToGroup(ctx, updReq.Group, updReq.Members)
    			}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
  2. cmd/admin-handlers-users.go

    				writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrAdminResourceInvalidArgument), r.URL)
    				return
    			}
    		}
    
    		if globalIAMSys.LDAPConfig.Enabled() {
    			// We don't allow internal group manipulation in this API when LDAP
    			// is enabled for now.
    			err = errIAMActionNotAllowed
    		} else {
    			updatedAt, err = globalIAMSys.AddUsersToGroup(ctx, updReq.Group, updReq.Members)
    		}
    	}
    	if err != nil {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 12:41:13 GMT 2024
    - 77.5K bytes
    - Viewed (0)
Back to top