Class: Decidim::Consultations::Admin::UpdateResponse
- Inherits:
-
Decidim::Command
- Object
- Decidim::Command
- Decidim::Consultations::Admin::UpdateResponse
- Defined in:
- app/commands/decidim/consultations/admin/update_response.rb
Overview
A command with all the business logic when updating an response in the system.
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(response, form) ⇒ UpdateResponse
constructor
Public: Initializes the command.
Constructor Details
#initialize(response, form) ⇒ UpdateResponse
Public: Initializes the command.
response - the response to update form - A form object with the params.
12 13 14 15 |
# File 'app/commands/decidim/consultations/admin/update_response.rb', line 12 def initialize(response, form) @response = response @form = form end |
Instance Method Details
#call ⇒ Object
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.
23 24 25 26 27 28 |
# File 'app/commands/decidim/consultations/admin/update_response.rb', line 23 def call return broadcast(:invalid) if form.invalid? update_response broadcast(:ok, response) end |