Class: Decidim::Assemblies::Admin::UpdateAssemblyMember
- Inherits:
-
Rectify::Command
- Object
- Rectify::Command
- Decidim::Assemblies::Admin::UpdateAssemblyMember
- Defined in:
- app/commands/decidim/assemblies/admin/update_assembly_member.rb
Overview
A command with all the business logic when updating an assembly member in the system.
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(form, assembly_member) ⇒ UpdateAssemblyMember
constructor
Public: Initializes the command.
Constructor Details
#initialize(form, assembly_member) ⇒ UpdateAssemblyMember
Public: Initializes the command.
form - A form object with the params. assembly_member - The AssemblyMember to update
13 14 15 16 |
# File 'app/commands/decidim/assemblies/admin/update_assembly_member.rb', line 13 def initialize(form, assembly_member) @form = form @assembly_member = assembly_member 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 'app/commands/decidim/assemblies/admin/update_assembly_member.rb', line 24 def call return broadcast(:invalid) if form.invalid? return broadcast(:invalid) unless assembly_member update_assembly_member! broadcast(:ok) end |