mirror of
https://github.com/ansible/awx.git
synced 2026-03-30 15:25:08 -02:30
11 lines
256 B
JavaScript
11 lines
256 B
JavaScript
import _ from 'lodash';
|
|
|
|
module.exports = {
|
|
url () {
|
|
return `${this.api.globals.launch_url}/#/jobs`;
|
|
},
|
|
sections: {}, // TODO: Fill this out
|
|
elements: {}, // TODO: Fill this out
|
|
commands: [], // TODO: Fill this out as needed
|
|
};
|