module Trell::Client::Boards
Public Instance Methods
board(id, options = {})
click to toggle source
# File lib/trell/client/boards.rb, line 18 def board(id, options = {}) get "boards/#{id}", options end
create_board(options = {})
click to toggle source
# File lib/trell/client/boards.rb, line 14 def create_board(options = {}) post 'boards', options end
delete_board(id, options = {})
click to toggle source
# File lib/trell/client/boards.rb, line 26 def delete_board(id, options = {}) delete "boards/#{id}", options end
member_boards(username, options = {})
click to toggle source
# File lib/trell/client/boards.rb, line 4 def member_boards(username, options = {}) get "members/#{username}/boards", options end
Also aliased as: boards
organization_boards(name, options = {})
click to toggle source
# File lib/trell/client/boards.rb, line 9 def organization_boards(name, options = {}) get "organizations/#{name}/boards", options end
Also aliased as: org_boards
update_board(id, options = {})
click to toggle source
# File lib/trell/client/boards.rb, line 22 def update_board(id, options = {}) put "boards/#{id}", options end