Sha256: 59b12b61863ba5e8e90c6248cb252bddc405c9f8427a8ac49986dbeb4ecc3111
Contents?: true
Size: 1.09 KB
Versions: 2
Compression:
Stored size: 1.09 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 } end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
decidim-consultations-0.19.1 | app/commands/decidim/consultations/admin/update_response.rb |
decidim-consultations-0.19.0 | app/commands/decidim/consultations/admin/update_response.rb |