Filtering out project syncs by default on the jobs list

by adding the query param `not__launch_type='sync'`
This commit is contained in:
jaredevantabor 2016-11-30 12:28:04 -08:00
parent 31781fa3d8
commit 7db6f35650

View File

@ -426,7 +426,11 @@ var tower = angular.module('Tower', [
},
params: {
job_search: {
value: { order_by: '-finished' }
value: {
not__launch_type: 'sync',
order_by: '-finished'
},
squash: ''
}
},
data: {