2022-08-19 19:59:13 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# Check the access policies for API::CartController
|
|
|
|
class CartPolicy < ApplicationPolicy
|
|
|
|
def create?
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2022-09-27 19:44:39 +02:00
|
|
|
%w[add_item remove_item set_quantity refresh_item validate].each do |action|
|
2022-08-19 19:59:13 +02:00
|
|
|
define_method "#{action}?" do
|
2022-08-20 20:49:51 +02:00
|
|
|
return user.privileged? || (record.statistic_profile_id == user.statistic_profile.id) if user
|
|
|
|
|
2022-09-05 15:24:08 +02:00
|
|
|
record.statistic_profile_id.nil? && record.operator_profile_id.nil?
|
2022-08-19 19:59:13 +02:00
|
|
|
end
|
|
|
|
end
|
2022-09-08 15:10:56 +02:00
|
|
|
|
|
|
|
def set_offer?
|
|
|
|
user.privileged?
|
|
|
|
end
|
2022-08-19 19:59:13 +02:00
|
|
|
end
|