Method: Gitlab::Client::Users#edit_user

Defined in:
lib/gitlab/client/users.rb

#edit_user(user_id, options = {}) ⇒ Gitlab::ObjectifiedHash

Updates a user.

Examples:

Gitlab.edit_user(15, { email: 'joe.smith@foo.org', projects_limit: 20 })

Parameters:

  • id (Integer)

    The ID of a user.

  • options (Hash) (defaults to: {})

    A customizable set of options.

Options Hash (options):

  • :email (String)

    The email of a user.

  • :password (String)

    The password of a user.

  • :name (String)

    The name of a user. Defaults to email.

  • :skype (String)

    The skype of a user.

  • :linkedin (String)

    The linkedin of a user.

  • :twitter (String)

    The twitter of a user.

  • :projects_limit (Integer)

    The limit of projects for a user.

Returns:

[View source]

76
77
78
# File 'lib/gitlab/client/users.rb', line 76

def edit_user(user_id, options = {})
  put("/users/#{user_id}", body: options)
end