mirror of
https://github.com/ansible/awx.git
synced 2026-03-19 01:47:31 -02:30
Merge pull request #163 from mabashian/search-states-dynamic-true
Added dynamic: true to states with search that were missing it
This commit is contained in:
@@ -20,7 +20,8 @@ export default {
|
|||||||
order_by: '-timestamp',
|
order_by: '-timestamp',
|
||||||
or__object1__in: null,
|
or__object1__in: null,
|
||||||
or__object2__in: null
|
or__object2__in: null
|
||||||
}
|
},
|
||||||
|
dynamic: true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
ncyBreadcrumb: {
|
ncyBreadcrumb: {
|
||||||
|
|||||||
@@ -14,7 +14,8 @@ export default {
|
|||||||
value: {
|
value: {
|
||||||
page_size: '20',
|
page_size: '20',
|
||||||
order_by: 'name'
|
order_by: 'name'
|
||||||
}
|
},
|
||||||
|
dynamic: true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
|
|||||||
@@ -14,7 +14,8 @@ export default {
|
|||||||
page_size: '20',
|
page_size: '20',
|
||||||
order_by: '-finished',
|
order_by: '-finished',
|
||||||
not__launch_type: 'sync'
|
not__launch_type: 'sync'
|
||||||
}
|
},
|
||||||
|
dynamic: true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
views: {
|
views: {
|
||||||
|
|||||||
@@ -14,7 +14,8 @@ export default {
|
|||||||
value: {
|
value: {
|
||||||
page_size: '20',
|
page_size: '20',
|
||||||
order_by: 'hostname'
|
order_by: 'hostname'
|
||||||
}
|
},
|
||||||
|
dynamic: true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
views: {
|
views: {
|
||||||
|
|||||||
@@ -14,7 +14,8 @@ export default {
|
|||||||
page_size: '20',
|
page_size: '20',
|
||||||
order_by: '-finished',
|
order_by: '-finished',
|
||||||
not__launch_type: 'sync'
|
not__launch_type: 'sync'
|
||||||
}
|
},
|
||||||
|
dynamic: true
|
||||||
},
|
},
|
||||||
instance_group_id: null
|
instance_group_id: null
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ export default {
|
|||||||
or__inventoryupdate__inventory_source__inventory:"",
|
or__inventoryupdate__inventory_source__inventory:"",
|
||||||
order_by: "-id"
|
order_by: "-id"
|
||||||
},
|
},
|
||||||
|
dynamic: true,
|
||||||
squash:""
|
squash:""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ export default {
|
|||||||
not__launch_type: 'sync',
|
not__launch_type: 'sync',
|
||||||
order_by: '-finished'
|
order_by: '-finished'
|
||||||
},
|
},
|
||||||
|
dynamic: true,
|
||||||
squash: ''
|
squash: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -33,7 +33,8 @@ export default [{
|
|||||||
user_search: {
|
user_search: {
|
||||||
value: {
|
value: {
|
||||||
order_by: 'username'
|
order_by: 'username'
|
||||||
}
|
},
|
||||||
|
dynamic: true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
ncyBreadcrumb: {
|
ncyBreadcrumb: {
|
||||||
@@ -237,7 +238,8 @@ export default [{
|
|||||||
or__project__organization: null,
|
or__project__organization: null,
|
||||||
or__inventory__organization: null,
|
or__inventory__organization: null,
|
||||||
page_size: 20
|
page_size: 20
|
||||||
}
|
},
|
||||||
|
dynamic: true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
@@ -294,7 +296,8 @@ export default [{
|
|||||||
user_search: {
|
user_search: {
|
||||||
value: {
|
value: {
|
||||||
order_by: 'username'
|
order_by: 'username'
|
||||||
}
|
},
|
||||||
|
dynamic: true
|
||||||
},
|
},
|
||||||
add_user_search: {
|
add_user_search: {
|
||||||
value: {
|
value: {
|
||||||
|
|||||||
@@ -319,7 +319,8 @@ export default
|
|||||||
value: {
|
value: {
|
||||||
next_run__isnull: 'false',
|
next_run__isnull: 'false',
|
||||||
order_by: 'unified_job_template__polymorphic_ctype__model'
|
order_by: 'unified_job_template__polymorphic_ctype__model'
|
||||||
}
|
},
|
||||||
|
dynamic: true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
|
|||||||
@@ -25,7 +25,8 @@ export default {
|
|||||||
template_search: {
|
template_search: {
|
||||||
value: {
|
value: {
|
||||||
type: 'workflow_job_template,job_template'
|
type: 'workflow_job_template,job_template'
|
||||||
}
|
},
|
||||||
|
dynamic: true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
searchPrefix: 'template',
|
searchPrefix: 'template',
|
||||||
|
|||||||
Reference in New Issue
Block a user