Class: Decidim::Admin::PublishComponent
- Inherits:
-
Command
- Object
- Command
- Decidim::Admin::PublishComponent
- Defined in:
- app/commands/decidim/admin/publish_component.rb
Overview
This command gets called when a component is published from the admin panel.
Instance Method Summary collapse
-
#call ⇒ Object
Public: Publishes the Component.
-
#initialize(component, current_user) ⇒ PublishComponent
constructor
Public: Initializes the command.
Constructor Details
#initialize(component, current_user) ⇒ PublishComponent
Public: Initializes the command.
component - The component to publish. current_user - the user performing the action
11 12 13 14 |
# File 'app/commands/decidim/admin/publish_component.rb', line 11 def initialize(component, current_user) @component = component @current_user = current_user end |
Instance Method Details
#call ⇒ Object
Public: Publishes the Component.
Broadcasts :ok if published, :invalid otherwise.
19 20 21 22 23 24 |
# File 'app/commands/decidim/admin/publish_component.rb', line 19 def call publish_component publish_event unless component.previously_published? broadcast(:ok) end |