11 lines
230 B
Ruby
11 lines
230 B
Ruby
module Boards
|
|
module Lists
|
|
class ListService < Boards::BaseService
|
|
def execute(board)
|
|
board.lists.create(list_type: :backlog) unless board.lists.backlog.exists?
|
|
|
|
board.lists
|
|
end
|
|
end
|
|
end
|
|
end
|