mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	* Feat: Show notes panel on CRM page Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
		
			
				
	
	
		
			10 lines
		
	
	
		
			190 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			190 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import ApiClient from './ApiClient';
 | 
						|
 | 
						|
class ContactNotes extends ApiClient {
 | 
						|
  constructor() {
 | 
						|
    super('contact_notes', { accountScoped: true });
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
export default new ContactNotes();
 |