1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/validators/subscription_group_validator.rb
2016-04-07 12:28:25 +02:00

7 lines
237 B
Ruby

class SubscriptionGroupValidator < ActiveModel::Validator
def validate(record)
if record.user.group != record.plan.group
record.errors[:plan_id] << "This plan is not compatible with the current user's group"
end
end
end