Method: Gitlab::Client::Projects#unarchive_project

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

#unarchive_project(id) ⇒ Gitlab::ObjectifiedHash

Unarchives a project.

Examples:

Gitlab.unarchive_project(4)

Parameters:

  • id (Integer, String)

    The ID or path of a project.

Returns:


643
644
645
# File 'lib/gitlab/client/projects.rb', line 643

def unarchive_project(id)
  post("/projects/#{url_encode id}/unarchive")
end