gitlab-org--gitlab-foss/app/models/concerns/valid_attribute.rb
2018-08-07 00:37:36 -07:00

12 lines
321 B
Ruby

# frozen_string_literal: true
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