debian-mirror-gitlab/app/services/boards/lists/list_service.rb

10 lines
138 B
Ruby
Raw Normal View History

2016-11-03 12:29:30 +05:30
module Boards
module Lists
class ListService < BaseService
def execute(board)
board.lists
end
end
end
end