diff --git a/awx/ui/client/features/jobs/routes/hostCompletedJobs.route.js b/awx/ui/client/features/jobs/routes/hostCompletedJobs.route.js index 20d1a504ba..6d4034aa28 100644 --- a/awx/ui/client/features/jobs/routes/hostCompletedJobs.route.js +++ b/awx/ui/client/features/jobs/routes/hostCompletedJobs.route.js @@ -16,6 +16,13 @@ export default { squash: '' } }, + data: { + socket: { + groups: { + jobs: ['status_changed'] + } + } + }, ncyBreadcrumb: { label: N_('COMPLETED JOBS') }, diff --git a/awx/ui/client/features/jobs/routes/inventoryCompletedJobs.route.js b/awx/ui/client/features/jobs/routes/inventoryCompletedJobs.route.js index d7d774d1a0..531e663909 100644 --- a/awx/ui/client/features/jobs/routes/inventoryCompletedJobs.route.js +++ b/awx/ui/client/features/jobs/routes/inventoryCompletedJobs.route.js @@ -18,6 +18,13 @@ export default { squash: '' } }, + data: { + socket: { + groups: { + jobs: ['status_changed'] + } + } + }, ncyBreadcrumb: { label: N_('JOBS') }, diff --git a/awx/ui/client/features/jobs/routes/templateCompletedJobs.route.js b/awx/ui/client/features/jobs/routes/templateCompletedJobs.route.js index 20a84507be..e1323714cc 100644 --- a/awx/ui/client/features/jobs/routes/templateCompletedJobs.route.js +++ b/awx/ui/client/features/jobs/routes/templateCompletedJobs.route.js @@ -17,6 +17,13 @@ export default { squash: '' } }, + data: { + socket: { + groups: { + jobs: ['status_changed'] + } + } + }, ncyBreadcrumb: { label: N_('COMPLETED JOBS') }, diff --git a/awx/ui/client/features/jobs/routes/workflowJobTemplateCompletedJobs.route.js b/awx/ui/client/features/jobs/routes/workflowJobTemplateCompletedJobs.route.js index bd05b2b1eb..258cf325d4 100644 --- a/awx/ui/client/features/jobs/routes/workflowJobTemplateCompletedJobs.route.js +++ b/awx/ui/client/features/jobs/routes/workflowJobTemplateCompletedJobs.route.js @@ -17,6 +17,13 @@ export default { squash: '' } }, + data: { + socket: { + groups: { + jobs: ['status_changed'] + } + } + }, ncyBreadcrumb: { label: N_('COMPLETED JOBS') }, diff --git a/awx/ui/client/features/templates/routes/projectsTemplatesList.route.js b/awx/ui/client/features/templates/routes/projectsTemplatesList.route.js index 8f6d916dbc..f19a426a4b 100644 --- a/awx/ui/client/features/templates/routes/projectsTemplatesList.route.js +++ b/awx/ui/client/features/templates/routes/projectsTemplatesList.route.js @@ -14,6 +14,13 @@ export default { }, } }, + data: { + socket: { + groups: { + jobs: ['status_changed'] + } + } + }, ncyBreadcrumb: { label: N_("JOB TEMPLATES") },