demarches-normaliennes/app/validators/password_complexity_validator.rb
2024-09-18 12:57:58 +02:00

9 lines
295 B
Ruby

# frozen_string_literal: true
class PasswordComplexityValidator < ActiveModel::EachValidator
def validate_each(record, attribute, value)
if value.present? && ZxcvbnService.complexity(value) < PASSWORD_COMPLEXITY_FOR_ADMIN
record.errors.add(attribute, :not_strong)
end
end
end