Class: Decidim::Conferences::Admin::CreateConference
- Inherits:
-
Decidim::Command
- Object
- Decidim::Command
- Decidim::Conferences::Admin::CreateConference
- Defined in:
- decidim-conferences/app/commands/decidim/conferences/admin/create_conference.rb
Overview
A command with all the business logic when creating a new conference in the system.
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(form) ⇒ CreateConference
constructor
Public: Initializes the command.
Constructor Details
#initialize(form) ⇒ CreateConference
Public: Initializes the command.
form - A form object with the params.
12 13 14 |
# File 'decidim-conferences/app/commands/decidim/conferences/admin/create_conference.rb', line 12 def initialize(form) @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.
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'decidim-conferences/app/commands/decidim/conferences/admin/create_conference.rb', line 22 def call return broadcast(:invalid) if form.invalid? if conference.persisted? add_admins_as_followers(conference) link_participatory_processes link_assemblies link_consultations broadcast(:ok, conference) else form.errors.add(:hero_image, conference.errors[:hero_image]) if conference.errors.include? :hero_image form.errors.add(:banner_image, conference.errors[:banner_image]) if conference.errors.include? :banner_image broadcast(:invalid) end end |