mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 13:07:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			203 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			203 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import ApiClient from '../ApiClient';
 | 
						|
 | 
						|
class TwilioChannel extends ApiClient {
 | 
						|
  constructor() {
 | 
						|
    super('channels/twilio_channel', { accountScoped: true });
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
export default new TwilioChannel();
 |