module Gitlab::Client::Projects

def unstar_project(id)

Returns:
  • (Gitlab::ObjectifiedHash) - Information about unstarred project.

Parameters:
  • id (Integer, String) -- The ID or path of a project.

Other tags:
    See: https://docs.gitlab.com/ce/api/projects.html#unstar-a-project -
def unstar_project(id)
  delete("/projects/#{url_encode id}/star")
end