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

13 lines
602 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# Check the access policies for API::LocalPaymentsController
class LocalPaymentPolicy < ApplicationPolicy
def confirm_payment?
2021-10-12 14:07:35 +02:00
# only admins and managers can offer free extensions of a subscription
has_free_days = record.shopping_cart.items.any? { |item| item.is_a? CartItem::FreeExtension }
2023-06-13 11:38:06 +02:00
event = record.shopping_cart.items.find { |item| item.is_a? CartItem::EventReservation }
2021-10-12 14:07:35 +02:00
2023-06-13 11:38:06 +02:00
((user.admin? || user.manager?) && record.shopping_cart.customer.id != user.id) || (record.price.zero? && !has_free_days) || event&.reservable&.pre_registration
end
end