module Gitlab::Client::Issues

def unsubscribe_from_issue(project, id)

Returns:
  • (Gitlab::ObjectifiedHash) - Information about unsubscribed issue.

Parameters:
  • id (Integer) -- The ID of an issue.
  • project (Integer, String) -- The ID or name of a project.
def unsubscribe_from_issue(project, id)
  post("/projects/#{url_encode project}/issues/#{id}/unsubscribe")
end