Class: KanbanpadAPI::TaskList
- Defined in:
- lib/kanbanpad/kanbanpad-api.rb
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from Base
Class Method Details
.backlog(project_id, options = {}) ⇒ Object
80 81 82 |
# File 'lib/kanbanpad/kanbanpad-api.rb', line 80 def self.backlog(project_id, = {}) find(:all, :params => .merge(:slug => project_id), :from => :backlog) end |
.finished(project_id, options = {}) ⇒ Object
76 77 78 |
# File 'lib/kanbanpad/kanbanpad-api.rb', line 76 def self.finished(project_id, = {}) find(:all, :params => .merge(:slug => project_id), :from => :finished) end |
Instance Method Details
#comments(options = {}) ⇒ Object
84 85 86 |
# File 'lib/kanbanpad/kanbanpad-api.rb', line 84 def comments( = {}) TaskComment.find(:all, :params => .merge().update(:id => id)) end |