Class: Decidim::Assemblies::Admin::UpdateAssembliesType
- Inherits:
-
Command
- Object
- Command
- Decidim::Assemblies::Admin::UpdateAssembliesType
- Defined in:
- decidim-assemblies/app/commands/decidim/assemblies/admin/update_assemblies_type.rb
Overview
A command with all the business logic when updating a new assembly type in the system.
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(assemblies_type, form) ⇒ UpdateAssembliesType
constructor
Public: Initializes the command.
Constructor Details
#initialize(assemblies_type, form) ⇒ UpdateAssembliesType
Public: Initializes the command.
assemblies_type - A assemblies_type object to update. form - A form object with the params.
13 14 15 16 |
# File 'decidim-assemblies/app/commands/decidim/assemblies/admin/update_assemblies_type.rb', line 13 def initialize(assemblies_type, form) @assemblies_type = assemblies_type @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.
24 25 26 27 28 29 30 |
# File 'decidim-assemblies/app/commands/decidim/assemblies/admin/update_assemblies_type.rb', line 24 def call return broadcast(:invalid) if form.invalid? update_assemblies_type! broadcast(:ok) end |