Class: Decidim::Budgets::Checkout
- Inherits:
-
Command
- Object
- Command
- Decidim::Budgets::Checkout
- Defined in:
- app/commands/decidim/budgets/checkout.rb
Overview
A command with all the business to checkout.
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(order) ⇒ Checkout
constructor
Public: Initializes the command.
Constructor Details
#initialize(order) ⇒ Checkout
Public: Initializes the command.
order - The current order for the user.
10 11 12 |
# File 'app/commands/decidim/budgets/checkout.rb', line 10 def initialize(order) @order = order end |
Instance Method Details
#call ⇒ Object
Executes the command. Broadcasts these events:
-
:ok when everything is valid.
-
:invalid if the there is an error.
Returns nothing.
20 21 22 23 24 |
# File 'app/commands/decidim/budgets/checkout.rb', line 20 def call return broadcast(:invalid, order) unless checkout! broadcast(:ok, order) end |