diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-03-19 19:08:55 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-03-19 19:08:55 +0900 |
| commit | caadc0978a786f2f64aad1caa37fcd9dafff0546 (patch) | |
| tree | 63bec1bd4a7fd658a61fe89ab83bce44963f5397 /packages/client/src/pages/admin/queue.vue | |
| parent | Fix: "Adding email to profile ends in error" (#8405) (diff) | |
| download | sharkey-caadc0978a786f2f64aad1caa37fcd9dafff0546.tar.gz sharkey-caadc0978a786f2f64aad1caa37fcd9dafff0546.tar.bz2 sharkey-caadc0978a786f2f64aad1caa37fcd9dafff0546.zip | |
feat: introduce bull dashboard
Diffstat (limited to 'packages/client/src/pages/admin/queue.vue')
| -rw-r--r-- | packages/client/src/pages/admin/queue.vue | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/packages/client/src/pages/admin/queue.vue b/packages/client/src/pages/admin/queue.vue index 522210d933..35fd618c82 100644 --- a/packages/client/src/pages/admin/queue.vue +++ b/packages/client/src/pages/admin/queue.vue @@ -17,6 +17,7 @@ import XQueue from './queue.chart.vue'; import * as os from '@/os'; import { stream } from '@/stream'; import * as symbols from '@/symbols'; +import * as config from '@/config'; export default defineComponent({ components: { @@ -32,6 +33,14 @@ export default defineComponent({ title: this.$ts.jobQueue, icon: 'fas fa-clipboard-list', bg: 'var(--bg)', + actions: [{ + asFullButton: true, + icon: 'fas fa-up-right-from-square', + text: this.$ts.dashboard, + handler: () => { + window.open(config.url + '/queue', '_blank'); + }, + }], }, connection: markRaw(stream.useChannel('queueStats')), } |