module Teamwork::Client::Activity

Public Instance Methods

recent_activity(options = {}) click to toggle source

GET the recent activity stream across all projects Return [Teamwork::Thing]

# File lib/teamwork/client/activity.rb, line 8
def recent_activity(options = {})
  objects_from_response(:get, "latestActivity", "activity", options.merge({maxItems: 60, onlyStarred: false}))
end