Sha256: 29b7c69e62f2a90f9addeecfa12e5778359067eadbb849ec84706260335770a0
Contents?: true
Size: 1.14 KB
Versions: 12
Compression:
Stored size: 1.14 KB
Contents
# frozen_string_literal: true module Decidim module Consultations module Admin # A command with all the business logic when updating an response in the system. class UpdateResponse < Decidim::Command # Public: Initializes the command. # # response - the response to update # form - A form object with the params. def initialize(response, form) @response = response @form = form end # Executes the command. Broadcasts these events: # # - :ok when everything is valid. # - :invalid if the form wasn't valid and we couldn't proceed. # # Returns nothing. def call return broadcast(:invalid) if form.invalid? update_response broadcast(:ok, response) end private attr_reader :form, :response def update_response response.assign_attributes(attributes) response.save! end def attributes { title: form.title, response_group: form.response_group } end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems