mirror of
https://github.com/ansible/awx.git
synced 2026-01-19 05:31:22 -03:30
11 lines
181 B
JavaScript
11 lines
181 B
JavaScript
import Base from '../Base';
|
|
|
|
class UnifiedJobs extends Base {
|
|
constructor (http) {
|
|
super(http);
|
|
this.baseUrl = '/api/v2/unified_jobs/';
|
|
}
|
|
}
|
|
|
|
export default UnifiedJobs;
|