265478ad74
For directories application_settings --> labels. Partially addresses #47424.
20 lines
328 B
Ruby
20 lines
328 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Boards
|
|
class ListService < Boards::BaseService
|
|
def execute
|
|
create_board! if parent.boards.empty?
|
|
boards
|
|
end
|
|
|
|
private
|
|
|
|
def boards
|
|
parent.boards
|
|
end
|
|
|
|
def create_board!
|
|
Boards::CreateService.new(parent, current_user).execute
|
|
end
|
|
end
|
|
end
|