2016-11-03 12:29:30 +05:30
|
|
|
module Boards
|
|
|
|
module Lists
|
2018-03-17 18:26:18 +05:30
|
|
|
class ListService < Boards::BaseService
|
2016-11-03 12:29:30 +05:30
|
|
|
def execute(board)
|
2017-09-10 17:25:29 +05:30
|
|
|
board.lists.create(list_type: :backlog) unless board.lists.backlog.exists?
|
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
board.lists
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|