summaryrefslogtreecommitdiff
path: root/app/services/boards/lists/list_service.rb
blob: c579ed4c869eb118f489d590f89800d635372144 (plain)
1
2
3
4
5
6
7
8
9
module Boards
  module Lists
    class ListService < BaseService
      def execute(board)
        board.lists
      end
    end
  end
end