Sha256: e0edd194f19ce349b9da5bb61f552025b183b14654252f23d5e9f0750276aaab
Contents?: true
Size: 1.3 KB
Versions: 4
Compression:
Stored size: 1.3 KB
Contents
# frozen_string_literal: true module Decidim module Admin # This command gets called when a component is published from the admin panel. class PublishComponent < Rectify::Command # Public: Initializes the command. # # component - The component to publish. # current_user - the user performing the action def initialize(component, current_user) @component = component @current_user = current_user end # Public: Publishes the Component. # # Broadcasts :ok if published, :invalid otherwise. def call publish_component publish_event unless component.previously_published? broadcast(:ok) end private attr_reader :component, :current_user def publish_component Decidim.traceability.perform_action!( :publish, component, current_user, visibility: "all" ) do component.publish! component end end def publish_event Decidim::EventsManager.publish( event: "decidim.events.components.component_published", event_class: Decidim::ComponentPublishedEvent, resource: component, followers: component.participatory_space.followers ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems