mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
66f81a975e
Migration from cart_items:{reservation:{}, subscription:{}, ...} to cart_items:{items:[{reservation:{}, ...}], ...}
9 lines
274 B
Ruby
9 lines
274 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Check the access policies for API::LocalPaymentsController
|
|
class LocalPaymentPolicy < ApplicationPolicy
|
|
def confirm_payment?
|
|
user.admin? || (user.manager? && record.shopping_cart.customer.id != user.id) || record.price.zero?
|
|
end
|
|
end
|