mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 02:57:57 +00:00 
			
		
		
		
	 439e064d90
			
		
	
	439e064d90
	
	
	
		
			
			* Add Contact panel changes * Fix parent iframe blocked * Add Conversation Panel, Contact messages * Update contact panel with conversation details * Update designs in sidebar * Fix specs * Specs: Add specs for conversationMetadata and contact modules * Fix currentUrl issues * Fix spelling * Set default to empty string
		
			
				
	
	
		
			21 lines
		
	
	
		
			419 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			419 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
| const sendMessage = content => ({
 | |
|   url: `/api/v1/widget/messages${window.location.search}`,
 | |
|   params: {
 | |
|     message: {
 | |
|       content,
 | |
|       timestamp: new Date().toString(),
 | |
|       referer_url: window.refererURL || '',
 | |
|     },
 | |
|   },
 | |
| });
 | |
| 
 | |
| const getConversation = ({ before }) => ({
 | |
|   url: `/api/v1/widget/messages${window.location.search}`,
 | |
|   params: { before },
 | |
| });
 | |
| 
 | |
| export default {
 | |
|   sendMessage,
 | |
|   getConversation,
 | |
| };
 |