Last active
August 29, 2015 14:02
-
-
Save foliea/9cba347dd6ecb7ed3559 to your computer and use it in GitHub Desktop.
Validation fail if trying to remove admin rights to last admin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class User < ActiveRecord::Base | |
validates :admin, last_stays: true | |
end | |
class LastStaysValidator < ActiveModel::EachValidator | |
def validate_each(record, attribute, value) | |
value_was = record.send("#{attribute}_was") | |
# If last record with attribute was equal to true | |
# it can't change this attribute value to false | |
if value == false && value_was == true && last?(record, attribute) | |
error = I18n.t('error.validation.last_stays', model: record.class.name) | |
record.errors[attribute] << error | |
end | |
end | |
private | |
def last?(record, attribute) | |
record.class.where("#{attribute}" => true).count <= 1 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment