Class: Decidim::Plans::Admin::CreatePlan
- Inherits:
-
Rectify::Command
- Object
- Rectify::Command
- Decidim::Plans::Admin::CreatePlan
- Includes:
- Decidim::Plans::AttachmentMethods
- Defined in:
- app/commands/decidim/plans/admin/create_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(form) ⇒ CreatePlan
constructor
Public: Initializes the command.
Constructor Details
#initialize(form) ⇒ CreatePlan
Public: Initializes the command.
form - A form object with the params.
13 14 15 |
# File 'app/commands/decidim/plans/admin/create_plan.rb', line 13 def initialize(form) @form = form end |
Instance Method Details
#call ⇒ Object
Executes the command. Broadcasts these events:
-
:ok when everything is valid, together with the plan.
-
:invalid if the form wasn’t valid and we couldn’t proceed.
Returns nothing.
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'app/commands/decidim/plans/admin/create_plan.rb', line 23 def call if return broadcast(:invalid) if end if form.invalid? return broadcast(:invalid) end Decidim::Plans.tracer.trace!(@form.current_user) do transaction do create_plan create_plan_contents link_proposals if send_notification end end broadcast(:ok, plan) end |