mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 03:27:52 +00:00
Co-authored-by: Vishnu Narayanan <vishnu@chatwoot.com> Co-authored-by: Sojan <sojan@pepalo.com> Co-authored-by: tds-1 <tanmay@qoala.id> Co-authored-by: Shivam Mishra <scm.mymail@gmail.com>
19 lines
674 B
Ruby
19 lines
674 B
Ruby
module TestData::Constants
|
|
NUM_ACCOUNTS = 20
|
|
MIN_MESSAGES = 1_000_000 # 1M
|
|
MAX_MESSAGES = 10_000_000 # 10M
|
|
BATCH_SIZE = 5_000
|
|
|
|
MAX_CONVERSATIONS_PER_CONTACT = 20
|
|
INBOXES_PER_ACCOUNT = 5
|
|
STATUSES = %w[open resolved pending].freeze
|
|
MESSAGE_TYPES = %w[incoming outgoing].freeze
|
|
|
|
MIN_MESSAGES_PER_CONVO = 5
|
|
MAX_MESSAGES_PER_CONVO = 50
|
|
|
|
COMPANY_TYPES = %w[Retail Healthcare Finance Education Manufacturing].freeze
|
|
DOMAIN_EXTENSIONS = %w[com io tech ai].freeze
|
|
COUNTRY_CODES = %w[1 44 91 61 81 86 49 33 34 39].freeze # US, UK, India, Australia, Japan, China, Germany, France, Spain, Italy
|
|
end
|