Sha256: 1ea7d9686c1a7963aa34e7a27edc3d0cc575a974e95f10a38dea3cdc61e99854
Contents?: true
Size: 1.14 KB
Versions: 37
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 < Rectify::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
37 entries across 37 versions & 1 rubygems