1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/app/controllers/api/local_payment_controller.rb

21 lines
478 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# API Controller for handling local payments (at the reception) or when the amount = 0
class API::LocalPaymentController < API::PaymentsController
def confirm_payment
cart = shopping_cart
price = debit_amount(cart)
authorize LocalPaymentContext.new(cart, price[:amount])
render on_payment_success(nil, nil, cart)
end
protected
def shopping_cart
cs = CartService.new(current_user)
cs.from_hash(params)
end
end