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