Class: Decidim::ActionDelegator::Admin::CreateParticipant

Inherits:
Command
  • Object
show all
Defined in:
app/commands/decidim/action_delegator/admin/create_participant.rb

Instance Method Summary collapse

Constructor Details

#initialize(form) ⇒ CreateParticipant

Public: Initializes the command.

form - A form object with the params.



10
11
12
# File 'app/commands/decidim/action_delegator/admin/create_participant.rb', line 10

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



20
21
22
23
24
25
26
# File 'app/commands/decidim/action_delegator/admin/create_participant.rb', line 20

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

  create_participant

  broadcast(:ok, participant)
end