Class: Decidim::Conferences::Admin::UpdateConferenceSpeaker

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

Overview

A command with all the business logic when updating a conference speaker in the system.

Instance Method Summary collapse

Constructor Details

#initialize(form, conference_speaker) ⇒ UpdateConferenceSpeaker

Public: Initializes the command.

form - A form object with the params. conference_speaker - The ConferenceSpeaker to update



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

def initialize(form, conference_speaker)
  @form = form
  @conference_speaker = conference_speaker
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
34
# File 'app/commands/decidim/conferences/admin/update_conference_speaker.rb', line 24

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

  transaction do
    update_conference_speaker!
    link_meetings(@conference_speaker)
  end

  broadcast(:ok)
end