mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			597 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			597 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* global axios */
 | 
						|
import ApiClient from '../ApiClient';
 | 
						|
 | 
						|
class PortalsAPI extends ApiClient {
 | 
						|
  constructor() {
 | 
						|
    super('portals', { accountScoped: true });
 | 
						|
  }
 | 
						|
 | 
						|
  getPortal({ portalSlug, locale }) {
 | 
						|
    return axios.get(`${this.url}/${portalSlug}?locale=${locale}`);
 | 
						|
  }
 | 
						|
 | 
						|
  updatePortal({ portalSlug, portalObj }) {
 | 
						|
    return axios.patch(`${this.url}/${portalSlug}`, portalObj);
 | 
						|
  }
 | 
						|
 | 
						|
  deletePortal(portalSlug) {
 | 
						|
    return axios.delete(`${this.url}/${portalSlug}`);
 | 
						|
  }
 | 
						|
 | 
						|
  deleteLogo(portalSlug) {
 | 
						|
    return axios.delete(`${this.url}/${portalSlug}/logo`);
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
export default PortalsAPI;
 |