class Github::Activity::Notifications

def subscribed?(thread_id, params={})


github.activity.notifications.subscribed? 'thread-id'
github = Github.new oauth_token: 'token'
= Examples

Check to see if the current user is subscribed to a thread.
def subscribed?(thread_id, params={})
  assert_presence_of thread_id
  normalize! params
  get_request("/notifications/threads/#{thread_id}/subscription", params)
end