class Github::Activity::Notifications
def delete(thread_id, params={})
github.activity.notifications.delete 'thread_id'
github = Github.new oauth_token: 'token'
= Examples
Delete a thread subscription
def delete(thread_id, params={}) assert_presence_of thread_id normalize! params delete_request("/notifications/threads/#{thread_id}/subscription", params) end