Return constant for validation period

This commit is contained in:
dinsmol 2022-02-23 09:41:03 +03:00
parent ab3ababc1a
commit 3586eb999b

View file

@ -6,7 +6,7 @@
# For email_validation event kind also check_level (regex/mx/smtp) is stored in the event_data
class ValidationEvent < ApplicationRecord
enum event_type: ValidationEvent::EventType::TYPES, _suffix: true
VALIDATION_PERIOD = 4.month
VALIDATION_PERIOD = 4.month.freeze
VALID_CHECK_LEVELS = %w[regex mx smtp].freeze
VALID_EVENTS_COUNT_THRESHOLD = 5
MX_CHECK = 3