Hook up status update sockets on completed jobs routes and project templates

This commit is contained in:
mabashian
2019-02-21 10:26:56 -05:00
parent d5d45e644d
commit e3c9a42741
5 changed files with 35 additions and 0 deletions

View File

@@ -16,6 +16,13 @@ export default {
squash: '' squash: ''
} }
}, },
data: {
socket: {
groups: {
jobs: ['status_changed']
}
}
},
ncyBreadcrumb: { ncyBreadcrumb: {
label: N_('COMPLETED JOBS') label: N_('COMPLETED JOBS')
}, },

View File

@@ -18,6 +18,13 @@ export default {
squash: '' squash: ''
} }
}, },
data: {
socket: {
groups: {
jobs: ['status_changed']
}
}
},
ncyBreadcrumb: { ncyBreadcrumb: {
label: N_('JOBS') label: N_('JOBS')
}, },

View File

@@ -17,6 +17,13 @@ export default {
squash: '' squash: ''
} }
}, },
data: {
socket: {
groups: {
jobs: ['status_changed']
}
}
},
ncyBreadcrumb: { ncyBreadcrumb: {
label: N_('COMPLETED JOBS') label: N_('COMPLETED JOBS')
}, },

View File

@@ -17,6 +17,13 @@ export default {
squash: '' squash: ''
} }
}, },
data: {
socket: {
groups: {
jobs: ['status_changed']
}
}
},
ncyBreadcrumb: { ncyBreadcrumb: {
label: N_('COMPLETED JOBS') label: N_('COMPLETED JOBS')
}, },

View File

@@ -14,6 +14,13 @@ export default {
}, },
} }
}, },
data: {
socket: {
groups: {
jobs: ['status_changed']
}
}
},
ncyBreadcrumb: { ncyBreadcrumb: {
label: N_("JOB TEMPLATES") label: N_("JOB TEMPLATES")
}, },