Sha256: 31b317c9dff1cdbd756d54e510512c3d986ae8d54840126cd659f9f5bab41e57
Contents?: true
Size: 1.27 KB
Versions: 42
Compression:
Stored size: 1.27 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 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
42 entries across 42 versions & 1 rubygems