Class: Decidim::TimeTracker::CreateMilestone
- Inherits:
-
Rectify::Command
- Object
- Rectify::Command
- Decidim::TimeTracker::CreateMilestone
- Includes:
- AttachmentMethods
- Defined in:
- app/commands/decidim/time_tracker/create_milestone.rb
Overview
A command with all the business logic when a user creates a new milestone.
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(form, current_user) ⇒ CreateMilestone
constructor
Public: Initializes the command.
Constructor Details
#initialize(form, current_user) ⇒ CreateMilestone
Public: Initializes the command.
form - A form object with the params.
11 12 13 14 |
# File 'app/commands/decidim/time_tracker/create_milestone.rb', line 11 def initialize(form, current_user) @form = form @current_user = current_user end |
Instance Method Details
#call ⇒ Object
Executes the command. Broadcasts these events:
-
:ok when everything is valid, together with the milestone.
-
:invalid if the form wasn’t valid and we couldn’t proceed.
Returns nothing.
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'app/commands/decidim/time_tracker/create_milestone.rb', line 22 def call return broadcast(:invalid, form.errors) if form.invalid? if return broadcast(:invalid, form..errors) if end transaction do create_milestone! if end broadcast(:ok, @milestone) end |