Class: Decidim::Plans::PublishPlan
- Inherits:
-
Rectify::Command
- Object
- Rectify::Command
- Decidim::Plans::PublishPlan
- Defined in:
- app/commands/decidim/plans/publish_plan.rb
Overview
A command with all the business logic when a user creates a new plan.
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(plan, current_user) ⇒ PublishPlan
constructor
Public: Initializes the command.
Constructor Details
#initialize(plan, current_user) ⇒ PublishPlan
Public: Initializes the command.
plan - The plan to publish. current_user - The current user.
11 12 13 14 |
# File 'app/commands/decidim/plans/publish_plan.rb', line 11 def initialize(plan, current_user) @plan = plan @current_user = current_user end |
Instance Method Details
#call ⇒ Object
Executes the command. Broadcasts these events:
-
:ok when everything is valid and the plan is published.
-
:invalid if the plan’s author is not the current user.
Returns nothing.
22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'app/commands/decidim/plans/publish_plan.rb', line 22 def call return broadcast(:invalid) unless @plan.(@current_user) transaction do publish_plan send_notification send_notification_to_participatory_space end broadcast(:ok, @plan) end |