mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			156 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			156 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
FactoryBot.define do
 | 
						|
  factory :note do
 | 
						|
    content { 'Hey welcome to chatwoot' }
 | 
						|
    account
 | 
						|
    user
 | 
						|
    contact
 | 
						|
  end
 | 
						|
end
 |