mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
d942d46632
TODO: fix running tests, fix front-end
21 lines
478 B
Ruby
21 lines
478 B
Ruby
# 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
|