summaryrefslogtreecommitdiff
path: root/src/queue/processors/db/index.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-03-11 19:43:58 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-03-11 19:43:58 +0900
commitc3d34bda37ca3b48214b094d54ee22d987a42574 (patch)
treecc5c7bb9d1883563e83c3a0165b2c5e6380da9ba /src/queue/processors/db/index.ts
parent10.92.4 (diff)
downloadsharkey-c3d34bda37ca3b48214b094d54ee22d987a42574.tar.gz
sharkey-c3d34bda37ca3b48214b094d54ee22d987a42574.tar.bz2
sharkey-c3d34bda37ca3b48214b094d54ee22d987a42574.zip
Resolve #4259
Diffstat (limited to 'src/queue/processors/db/index.ts')
-rw-r--r--src/queue/processors/db/index.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/queue/processors/db/index.ts b/src/queue/processors/db/index.ts
index 8ac9c1a3d6..4a97a1c884 100644
--- a/src/queue/processors/db/index.ts
+++ b/src/queue/processors/db/index.ts
@@ -6,6 +6,7 @@ import { exportFollowing } from './export-following';
import { exportMute } from './export-mute';
import { exportBlocking } from './export-blocking';
import { exportUserLists } from './export-user-lists';
+import { importUserLists } from './import-user-lists';
const jobs = {
deleteNotes,
@@ -14,7 +15,8 @@ const jobs = {
exportFollowing,
exportMute,
exportBlocking,
- exportUserLists
+ exportUserLists,
+ importUserLists
} as any;
export default function(dbQueue: Bull.Queue) {