Class: Basecamp::TimeEntry
Class Method Summary
collapse
Methods inherited from Resource
element_name, parent_resources, prefix, #prefix_options, prefix_source
Class Method Details
.all(project_id, page = 0) ⇒ Object
350
351
352
|
# File 'lib/basecamp.rb', line 350
def self.all(project_id, page = 0)
find(:all, :params => { :project_id => project_id, :page => page })
end
|
.report(options = {}) ⇒ Object
354
355
356
|
# File 'lib/basecamp.rb', line 354
def self.report(options={})
find(:all, :from => :report, :params => options)
end
|