mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 21:33:10 +02:00
35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
import * as Bull from 'bull';
|
|
import { DbJobData } from '@/queue/types';
|
|
import { deleteDriveFiles } from './delete-drive-files';
|
|
import { exportCustomEmojis } from './export-custom-emojis';
|
|
import { exportNotes } from './export-notes';
|
|
import { exportFollowing } from './export-following';
|
|
import { exportMute } from './export-mute';
|
|
import { exportBlocking } from './export-blocking';
|
|
import { exportUserLists } from './export-user-lists';
|
|
import { importFollowing } from './import-following';
|
|
import { importUserLists } from './import-user-lists';
|
|
import { deleteAccount } from './delete-account';
|
|
import { importMuting } from './import-muting';
|
|
import { importBlocking } from './import-blocking';
|
|
|
|
const jobs = {
|
|
deleteDriveFiles,
|
|
exportCustomEmojis,
|
|
exportNotes,
|
|
exportFollowing,
|
|
exportMute,
|
|
exportBlocking,
|
|
exportUserLists,
|
|
importFollowing,
|
|
importMuting,
|
|
importBlocking,
|
|
importUserLists,
|
|
deleteAccount,
|
|
} as Record<string, Bull.ProcessCallbackFunction<DbJobData> | Bull.ProcessPromiseFunction<DbJobData>>;
|
|
|
|
export default function(dbQueue: Bull.Queue<DbJobData>) {
|
|
for (const [k, v] of Object.entries(jobs)) {
|
|
dbQueue.process(k, v);
|
|
}
|
|
}
|