class Github::Activity::Notifications
def subscribed?(*args)
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?(*args) arguments(args, :required => [:thread_id]) get_request("/notifications/threads/#{thread_id}/subscription", arguments.params) end