class Github::Client::Activity::Watching

def unwatch(*args)

Other tags:
    Api: - public

Other tags:
    See: https://developer.github.com/v3/activity/watching/#stop-watching-a-repository-legacy -
def unwatch(*args)
  arguments(args, required: [:user, :repo])
  delete_request("/user/subscriptions/#{arguments.user}/#{arguments.repo}", arguments.params)
end