mirror of
https://github.com/ansible/awx.git
synced 2026-01-28 00:51:27 -03:30
11 lines
298 B
JavaScript
11 lines
298 B
JavaScript
import Base from '../Base';
|
|
import InstanceGroupsMixin from '../mixins/InstanceGroups.mixin';
|
|
|
|
class ConstructedInventories extends InstanceGroupsMixin(Base) {
|
|
constructor(http) {
|
|
super(http);
|
|
this.baseUrl = 'api/v2/constructed_inventories/';
|
|
}
|
|
}
|
|
export default ConstructedInventories;
|