gitlab-org--gitlab-foss/app/services/boards/lists/list_service.rb

10 lines
138 B
Ruby
Raw Normal View History

module Boards
module Lists
2016-10-07 15:46:32 -04:00
class ListService < BaseService
def execute(board)
board.lists
end
end
end
end