Class: Decidim::Assemblies::Admin::CopyAssembly

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

Overview

A command with all the business logic when copying a new participatory assembly in the system.

Instance Method Summary collapse

Constructor Details

#initialize(form, assembly) ⇒ CopyAssembly

Public: Initializes the command.

form - A form object with the params. assembly - An assembly we want to duplicate



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

def initialize(form, assembly)
  @form = form
  @assembly = assembly
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/assemblies/admin/copy_assembly.rb', line 24

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

  Assembly.transaction do
    copy_assembly
    copy_assembly_categories if @form.copy_categories?
    copy_assembly_components if @form.copy_components?
  end

  broadcast(:ok, @copied_assembly)
end