mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-03 20:17:59 +00:00 
			
		
		
		
	Dynamically generate views from OpenAPI document to List/CRUD LDAP users and groups in the UI
		
			
				
	
	
		
			14 lines
		
	
	
		
			254 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			254 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import Component from '@ember/component';
 | 
						|
 | 
						|
const SectionTabs = Component.extend({
 | 
						|
  tagName: '',
 | 
						|
  model: null,
 | 
						|
  tabType: 'authSettings',
 | 
						|
});
 | 
						|
 | 
						|
SectionTabs.reopenClass({
 | 
						|
  positionalParams: ['model', 'tabType', 'paths'],
 | 
						|
});
 | 
						|
 | 
						|
export default SectionTabs;
 |