mirror of
https://github.com/ansible/awx.git
synced 2026-01-17 20:51:21 -03:30
* adding package-lock.json * deleted unsured file * Removes and unused file * Fixes errant styling change * Fixes an error and uses a prop that PF recognizes * Updates PR to use API Modules * Fixes PR Issues * Addes tests to Templates * Addresses PR Issues * Revert package-lock.json
11 lines
206 B
JavaScript
11 lines
206 B
JavaScript
import Base from '../Base';
|
|
|
|
class UnifiedJobTemplates extends Base {
|
|
constructor (http) {
|
|
super(http);
|
|
this.baseUrl = '/api/v2/unified_job_templates/';
|
|
}
|
|
}
|
|
|
|
export default UnifiedJobTemplates;
|