gitlab-org--gitlab-foss/app/services/boards/update_service.rb

12 lines
223 B
Ruby

# frozen_string_literal: true
module Boards
class UpdateService < Boards::BaseService
def execute(board)
board.update(params)
end
end
end
Boards::UpdateService.prepend_if_ee('EE::Boards::UpdateService')