mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			666 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			666 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* global axios */
 | 
						|
 | 
						|
import PortalsAPI from './portals';
 | 
						|
 | 
						|
class CategoriesAPI extends PortalsAPI {
 | 
						|
  constructor() {
 | 
						|
    super('categories', { accountScoped: true });
 | 
						|
  }
 | 
						|
 | 
						|
  get({ portalSlug }) {
 | 
						|
    return axios.get(`${this.url}/${portalSlug}/categories`);
 | 
						|
  }
 | 
						|
 | 
						|
  create({ portalSlug, categoryObj }) {
 | 
						|
    return axios.post(`${this.url}/${portalSlug}/categories`, categoryObj);
 | 
						|
  }
 | 
						|
 | 
						|
  update({ portalSlug, categoryObj }) {
 | 
						|
    return axios.patch(`${this.url}/${portalSlug}/categories`, categoryObj);
 | 
						|
  }
 | 
						|
 | 
						|
  delete({ portalSlug, categoryId }) {
 | 
						|
    return axios.delete(`${this.url}/${portalSlug}/categories/${categoryId}`);
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
export default new CategoriesAPI();
 |