module Gitlab::Client::Users

def edit_user(user_id, options={})

Returns:
  • (Gitlab::ObjectifiedHash) - Information about created user.

Options Hash: (**options)
  • :projects_limit (Integer) -- The limit of projects for a user.
  • :twitter (String) -- The twitter of a user.
  • :linkedin (String) -- The linkedin of a user.
  • :skype (String) -- The skype of a user.
  • :name (String) -- The name of a user. Defaults to email.
  • :password (String) -- The password of a user.
  • :email (String) -- The email of a user.

Parameters:
  • options (Hash) -- A customizable set of options.
  • id (Integer) -- The ID of a user.
def edit_user(user_id, options={})
  put("/users/#{user_id}", body: options)
end