module Tr3llo::Command::List::List
Public Instance Methods
execute(board_id)
click to toggle source
# File lib/3llo/command/list/list.rb, line 7 def execute(board_id) interface = Application.fetch_interface!() lists = API::List.find_all_by_board(board_id) interface.print_frame do interface.puts(View::List::List.render(lists)) end end