mirror of
https://github.com/ansible/awx.git
synced 2026-02-20 12:40:06 -03:30
14 lines
327 B
JavaScript
14 lines
327 B
JavaScript
module.exports = {
|
|
url () {
|
|
return `${this.api.globals.launch_url}/#/portal/myjobs`;
|
|
},
|
|
sections: {},
|
|
elements: {},
|
|
commands: [{
|
|
load () {
|
|
this.api.url('data:,'); // https://github.com/nightwatchjs/nightwatch/issues/1724
|
|
return this.navigate();
|
|
},
|
|
}],
|
|
};
|