Sha256: 16149fd318205ae5759fd61d0be221c489e9c50a7741c7513761bce7dd771366
Contents?: true
Size: 1.04 KB
Versions: 12
Compression:
Stored size: 1.04 KB
Contents
# frozen_string_literal: true module Decidim module Assemblies module Admin # A command that sets an assembly as published. class PublishAssembly < 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!("publish", assembly, current_user, visibility: "all") do assembly.publish! end broadcast(:ok) end private attr_reader :assembly, :current_user end end end end
Version data entries
12 entries across 12 versions & 1 rubygems