2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
module Boards
|
|
|
|
module Lists
|
2018-03-17 18:26:18 +05:30
|
|
|
class ListService < Boards::BaseService
|
2020-05-24 23:13:21 +05:30
|
|
|
def execute(board, create_default_lists: true)
|
|
|
|
if create_default_lists && !board.lists.backlog.exists?
|
|
|
|
board.lists.create(list_type: :backlog)
|
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
lists = board.lists.preload_associated_models
|
2021-04-17 20:07:23 +05:30
|
|
|
|
|
|
|
return lists.id_in(params[:list_id]) if params[:list_id].present?
|
|
|
|
|
|
|
|
list_types = unavailable_list_types_for(board)
|
|
|
|
lists.without_types(list_types)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def unavailable_list_types_for(board)
|
|
|
|
hidden_lists_for(board)
|
|
|
|
end
|
|
|
|
|
|
|
|
def hidden_lists_for(board)
|
|
|
|
hidden = []
|
|
|
|
|
|
|
|
hidden << ::List.list_types[:backlog] if board.hide_backlog_list
|
|
|
|
hidden << ::List.list_types[:closed] if board.hide_closed_list
|
|
|
|
|
|
|
|
hidden
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-12-04 20:38:33 +05:30
|
|
|
|
|
|
|
Boards::Lists::ListService.prepend_if_ee('EE::Boards::Lists::ListService')
|