module Trell::Client::Lists

Public Instance Methods

create_list(options = {}) click to toggle source
# File lib/trell/client/lists.rb, line 8
def create_list(options = {})
  post 'lists', options
end
delete_list(id, options = {}) click to toggle source
# File lib/trell/client/lists.rb, line 20
def delete_list(id, options = {})
  delete "lists/#{id}", options
end
list(id, options = {}) click to toggle source
# File lib/trell/client/lists.rb, line 12
def list(id, options = {})
  get "lists/#{id}", options
end
lists(board_id, options = {}) click to toggle source
# File lib/trell/client/lists.rb, line 4
def lists(board_id, options = {})
  get "boards/#{board_id}/lists", options
end
update_list(id, options = {}) click to toggle source
# File lib/trell/client/lists.rb, line 16
def update_list(id, options = {})
  put "lists/#{id}", options
end