mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 11:08:04 +00:00 
			
		
		
		
	 16fe912fbd
			
		
	
	16fe912fbd
	
	
	
		
			
			Co-authored-by: Nithin David Thomas <webofnithin@gmail.com> Co-authored-by: Sojan Jose <sojan@pepalo.com>
		
			
				
	
	
		
			18 lines
		
	
	
		
			303 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			303 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
| const sendMessage = content => ({
 | |
|   url: `/api/v1/widget/messages${window.location.search}`,
 | |
|   params: {
 | |
|     message: {
 | |
|       content,
 | |
|     },
 | |
|   },
 | |
| });
 | |
| 
 | |
| const getConversation = () => ({
 | |
|   url: `/api/v1/widget/messages${window.location.search}`,
 | |
| });
 | |
| 
 | |
| export default {
 | |
|   sendMessage,
 | |
|   getConversation,
 | |
| };
 |