class Github::Activity::Notifications
def get(thread_id, params={})
github.activity.notifications.get 'thread_id' { |thread| ... }
github.activity.notifications.get 'thread_id'
github = Github.new oauth_token: 'token'
= Examples
View a single thread
def get(thread_id, params={}) assert_presence_of thread_id normalize! params response = get_request("/notifications/threads/#{thread_id}", params) return response unless block_given? response.each { |el| yield el } end