Class: Decidim::Consultations::Admin::UpdateResponseGroup

Inherits:
Decidim::Command
  • Object
show all
Defined in:
app/commands/decidim/consultations/admin/update_response_group.rb

Overview

A command with all the business logic when updating a new response group

Instance Method Summary collapse

Constructor Details

#initialize(response_group, form) ⇒ UpdateResponseGroup

Public: Initializes the command.

response_group - the response group to update form - A form object with the params.



12
13
14
15
# File 'app/commands/decidim/consultations/admin/update_response_group.rb', line 12

def initialize(response_group, form)
  @response_group = response_group
  @form = form
end

Instance Method Details

#callObject

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
# File 'app/commands/decidim/consultations/admin/update_response_group.rb', line 23

def call
  return broadcast(:invalid) if form.invalid?

  broadcast(:ok, update_response_group)
end