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

10 lines
157 B
Ruby
Raw Normal View History

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