Class: Decidim::Assemblies::Admin::UnpublishAssembly

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

Overview

A command that sets an assembly as unpublished.

Instance Method Summary collapse

Constructor Details

#initialize(assembly, current_user) ⇒ UnpublishAssembly

Public: Initializes the command.

assembly - A Assembly that will be published current_user - the user performing the action



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

def initialize(assembly, current_user)
  @assembly = assembly
  @current_user = current_user
end

Instance Method Details

#callObject

Executes the command. Broadcasts these events:

  • :ok when everything is valid.

  • :invalid if the data wasn’t valid and we couldn’t proceed.

Returns nothing.



23
24
25
26
27
28
29
30
31
# File 'app/commands/decidim/assemblies/admin/unpublish_assembly.rb', line 23

def call
  return broadcast(:invalid) if assembly.nil? || !assembly.published?

  Decidim.traceability.perform_action!("unpublish", assembly, current_user) do
    assembly.unpublish!
  end

  broadcast(:ok)
end