Class: Decidim::Initiatives::Admin::UpdateInitiativeType

Inherits:
Rectify::Command
  • Object
show all
Defined in:
app/commands/decidim/initiatives/admin/update_initiative_type.rb

Overview

A command with all the business logic that updates an existing initiative type.

Instance Method Summary collapse

Constructor Details

#initialize(initiative_type, form) ⇒ UpdateInitiativeType

Public: Initializes the command.

initiative_type: Decidim::InitiativesType form - A form object with the params.



13
14
15
16
# File 'app/commands/decidim/initiatives/admin/update_initiative_type.rb', line 13

def initialize(initiative_type, form)
  @form = form
  @initiative_type = initiative_type
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.



24
25
26
27
28
29
30
31
32
33
# File 'app/commands/decidim/initiatives/admin/update_initiative_type.rb', line 24

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

  if initiative_type.valid?
    broadcast(:ok, initiative_type)
  else
    broadcast(:invalid)
  end
end