mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
21 lines
501 B
Ruby
21 lines
501 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Check the access policies for API::CartController
|
|
class CartPolicy < ApplicationPolicy
|
|
def create?
|
|
true
|
|
end
|
|
|
|
%w[add_item remove_item set_quantity refresh_item validate].each do |action|
|
|
define_method "#{action}?" do
|
|
return user.privileged? || (record.statistic_profile_id == user.statistic_profile.id) if user
|
|
|
|
record.statistic_profile_id.nil? && record.operator_profile_id.nil?
|
|
end
|
|
end
|
|
|
|
def set_offer?
|
|
user.privileged?
|
|
end
|
|
end
|