Files
chatwoot/lib/test_data.rb
Tanmay Deep Sharma 6e6912aa56 chore: Generate test data for bulk insertion (#11229)
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>
2025-05-06 11:13:11 +05:30

19 lines
480 B
Ruby

module TestData
def self.generate
Orchestrator.call
end
def self.cleanup
CleanupService.call
end
end
require_relative 'test_data/constants'
require_relative 'test_data/database_optimizer'
require_relative 'test_data/cleanup_service'
require_relative 'test_data/account_creator'
require_relative 'test_data/inbox_creator'
require_relative 'test_data/display_id_tracker'
require_relative 'test_data/contact_batch_service'
require_relative 'test_data/orchestrator'