Class: Decidim::Admin::CreateAttachmentCollection

Inherits:
Rectify::Command
  • Object
show all
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

Constructor Details

#initialize(form, collection_for) ⇒ 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
# File 'app/commands/decidim/admin/create_attachment_collection.rb', line 12

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



23
24
25
26
27
28
# File 'app/commands/decidim/admin/create_attachment_collection.rb', line 23

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

  create_attachment_collection
  broadcast(:ok)
end