mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
b151802923
TODO: fix datetime parsing
18 lines
642 B
Ruby
18 lines
642 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ReservationSlotSubscriptionValidator < ActiveModel::Validator
|
|
def validate(record)
|
|
record.slots.each do |s|
|
|
unless s.availability.plan_ids.empty?
|
|
if record.user.subscribed_plan && s.availability.plan_ids.include?(record.user.subscribed_plan.id)
|
|
elsif s.availability.plan_ids.include?(record.plan_id)
|
|
else
|
|
# TODO, this validation requires to check if the operator is privileged.
|
|
# Meanwhile we can't check this, we disable the validation
|
|
record.errors[:slots] << 'slot is restrict for subscriptions'
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|