mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 02:57:57 +00:00 
			
		
		
		
	 58e78621ba
			
		
	
	58e78621ba
	
	
	
		
			
			In admin settings, this Pr will add the UI for managing custom roles ( ref: https://github.com/chatwoot/chatwoot/pull/9995 ). It also handles the routing logic changes to accommodate fine-tuned permissions. --------- Co-authored-by: Pranav <pranavrajs@gmail.com> Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Co-authored-by: iamsivin <iamsivin@gmail.com> Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
		
			
				
	
	
		
			10 lines
		
	
	
		
			185 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			185 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import ApiClient from './ApiClient';
 | |
| 
 | |
| class CustomRole extends ApiClient {
 | |
|   constructor() {
 | |
|     super('custom_roles', { accountScoped: true });
 | |
|   }
 | |
| }
 | |
| 
 | |
| export default new CustomRole();
 |