mirror of
https://github.com/ansible/awx.git
synced 2026-03-01 16:58:46 -03:30
Filtering out project syncs by default on the jobs list
by adding the query param `not__launch_type='sync'`
This commit is contained in:
@@ -426,7 +426,11 @@ var tower = angular.module('Tower', [
|
|||||||
},
|
},
|
||||||
params: {
|
params: {
|
||||||
job_search: {
|
job_search: {
|
||||||
value: { order_by: '-finished' }
|
value: {
|
||||||
|
not__launch_type: 'sync',
|
||||||
|
order_by: '-finished'
|
||||||
|
},
|
||||||
|
squash: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
|
|||||||
Reference in New Issue
Block a user