debian-mirror-gitlab/app/models/concerns/valid_attribute.rb

11 lines
290 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
module ValidAttribute
extend ActiveSupport::Concern
# Checks whether an attribute has failed validation or not
#
# +attribute+ The symbolised name of the attribute i.e :name
def valid_attribute?(attribute)
self.errors.empty? || self.errors.messages[attribute].nil?
end
end