Sha256: a3344638620b26a6094307911f87b0d950a6220f44f30b54f715195ece08922c
Contents?: true
Size: 791 Bytes
Versions: 80
Compression:
Stored size: 791 Bytes
Contents
# frozen_string_literal: true module Decidim module Budgets # A command with all the business to cancel an order. class CancelOrder < Rectify::Command # Public: Initializes the command. # # order - The current order for the user. def initialize(order) @order = order end # Executes the command. Broadcasts these events: # # - :ok when everything is valid. # - :invalid if the there is an error. # # Returns nothing. def call return broadcast(:invalid) if invalid_order? cancel_order! broadcast(:ok, @order) end private def invalid_order? !@order&.checked_out? end def cancel_order! @order.destroy! end end end end
Version data entries
80 entries across 80 versions & 2 rubygems