diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-03-11 19:43:58 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-03-11 19:43:58 +0900 |
| commit | c3d34bda37ca3b48214b094d54ee22d987a42574 (patch) | |
| tree | cc5c7bb9d1883563e83c3a0165b2c5e6380da9ba /src/queue/processors/db/index.ts | |
| parent | 10.92.4 (diff) | |
| download | sharkey-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.ts | 4 |
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) { |