8338b9b0e3
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;
|