class Fog::Tasks::Wunderlist::Lists

Public Instance Methods

all() click to toggle source
# File lib/fog/wunderlist/models/tasks/lists.rb, line 11
def all
  load service.list_lists.body
end
get(id) click to toggle source
# File lib/fog/wunderlist/models/tasks/lists.rb, line 15
def get(id)
  all.find{ |l| l.id == id}
end