lint
This commit is contained in:
parent
408142647c
commit
4a64280a7c
306 changed files with 306 additions and 0 deletions
|
|
@ -11,6 +11,7 @@ export const meta = {
|
|||
params: {},
|
||||
};
|
||||
|
||||
// eslint-disable-next-line import/no-default-export
|
||||
export default define(meta, async (ps, me) => {
|
||||
destroy();
|
||||
|
||||
|
|
|
|||
|
|
@ -35,6 +35,7 @@ export const meta = {
|
|||
},
|
||||
};
|
||||
|
||||
// eslint-disable-next-line import/no-default-export
|
||||
export default define(meta, async (ps) => {
|
||||
const jobs = await deliverQueue.getJobs(['delayed']);
|
||||
|
||||
|
|
|
|||
|
|
@ -35,6 +35,7 @@ export const meta = {
|
|||
},
|
||||
};
|
||||
|
||||
// eslint-disable-next-line import/no-default-export
|
||||
export default define(meta, async (ps) => {
|
||||
const jobs = await inboxQueue.getJobs(['delayed']);
|
||||
|
||||
|
|
|
|||
|
|
@ -56,6 +56,7 @@ export const meta = {
|
|||
},
|
||||
};
|
||||
|
||||
// eslint-disable-next-line import/no-default-export
|
||||
export default define(meta, async (ps) => {
|
||||
const queue =
|
||||
ps.domain === 'deliver' ? deliverQueue :
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ export const meta = {
|
|||
},
|
||||
};
|
||||
|
||||
// eslint-disable-next-line import/no-default-export
|
||||
export default define(meta, async (ps) => {
|
||||
const deliverJobCounts = await deliverQueue.getJobCounts();
|
||||
const inboxJobCounts = await inboxQueue.getJobCounts();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue