Class: Decidim::Admin::CreateAttachmentCollection
- Inherits:
-
Command
- Object
- Command
- Decidim::Admin::CreateAttachmentCollection
- Defined in:
- app/commands/decidim/admin/create_attachment_collection.rb
Overview
A command with all the business logic to add an attachment collection to a participatory space.
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(form, collection_for, user) ⇒ CreateAttachmentCollection
constructor
Public: Initializes the command.
Constructor Details
#initialize(form, collection_for, user) ⇒ CreateAttachmentCollection
Public: Initializes the command.
form - A form object with the params. collection_for - The ActiveRecord::Base that will hold the collection
12 13 14 15 16 |
# File 'app/commands/decidim/admin/create_attachment_collection.rb', line 12 def initialize(form, collection_for, user) @form = form @collection_for = collection_for @user = user 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 |
# File 'app/commands/decidim/admin/create_attachment_collection.rb', line 24 def call return broadcast(:invalid) if form.invalid? broadcast(:ok) end |