Sha256: c7cd8c6ebf3e11f67659482b6c84eea5a9c31f5ac35acbabd3dd3211ba94566d
Contents?: true
Size: 1.03 KB
Versions: 65
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 < Rectify::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
65 entries across 65 versions & 1 rubygems