class Github::Client::Activity::Notifications
def get(*args)
- Api: - public
Other tags:
- See: https://developer.github.com/v3/activity/notifications/#view-a-single-thread -
def get(*args) arguments(args, required: [:thread_id]) response = get_request("/notifications/threads/#{arguments.thread_id}", arguments.params) return response unless block_given? response.each { |el| yield el } end