Class: Decidim::Admin::CreateAttachmentCollection

Inherits:
Command
  • Object
show all
Defined in:
decidim-admin/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

Methods inherited from Command

call, #evaluate, #method_missing, #respond_to_missing?, #transaction, #with_events

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 'decidim-admin/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

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Decidim::Command

Instance Method Details

#callObject

Executes the command. Broadcasts these events:

  • :ok when everything is valid.

  • :invalid if the form was not valid and we could not proceed.

Returns nothing.



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

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

  create_attachment_collection
  broadcast(:ok)
end