module Camp3::Client::TodoAPI
Public Instance Methods
todolists(todoset)
click to toggle source
# File lib/camp3/api/todo.rb, line 6 def todolists(todoset) get(todoset.todolists_url, override_path: true) end
todos(todolist, options={})
click to toggle source
# File lib/camp3/api/todo.rb, line 10 def todos(todolist, options={}) get(todolist.todos_url, options.merge(override_path: true)) end