module Gitlab::Client::Labels

def unsubscribe_from_label(project, name)

Returns:
  • (Gitlab::ObjectifiedHash) - Information about the label unsubscribed from.

Parameters:
  • name (String) -- The name of a label.
  • project (Integer, String) -- The ID or name of a project.
def unsubscribe_from_label(project, name)
  post("/projects/#{url_encode project}/labels/#{url_encode name}/unsubscribe")
end