2018-09-25 16:28:26 +00:00
|
|
|
import Component from '@ember/component';
|
2018-04-03 14:16:57 +00:00
|
|
|
|
2018-09-25 16:28:26 +00:00
|
|
|
const SectionTabs = Component.extend({
|
2018-04-03 14:16:57 +00:00
|
|
|
tagName: '',
|
|
|
|
model: null,
|
|
|
|
tabType: 'authSettings',
|
|
|
|
});
|
|
|
|
|
|
|
|
SectionTabs.reopenClass({
|
2019-06-21 15:18:26 +00:00
|
|
|
positionalParams: ['model', 'tabType', 'paths'],
|
2018-04-03 14:16:57 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
export default SectionTabs;
|