Sha256: 915336c6b787f48d8579daa1008bd2c9c16f7bba46c9c88ab7c5d847ee3ef524
Contents?: true
Size: 1.03 KB
Versions: 12
Compression:
Stored size: 1.03 KB
Contents
# frozen_string_literal: true module Decidim module Assemblies module Admin # A command that sets an assembly as unpublished. class UnpublishAssembly < Decidim::Command # Public: Initializes the command. # # assembly - A Assembly that will be published # current_user - the user performing the action def initialize(assembly, current_user) @assembly = assembly @current_user = current_user end # 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. 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 private attr_reader :assembly, :current_user end end end end
Version data entries
12 entries across 12 versions & 1 rubygems