diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-03-12 00:34:19 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-03-12 00:34:19 +0900 |
| commit | c932f7a25bfd0944b21fc026a647fa1d04750418 (patch) | |
| tree | b10f9725ab30b094b1ac95ba980881e6d9a09888 /src/queue/processors/db/index.ts | |
| parent | Refactor: Extract downloadTextFile function (diff) | |
| download | sharkey-c932f7a25bfd0944b21fc026a647fa1d04750418.tar.gz sharkey-c932f7a25bfd0944b21fc026a647fa1d04750418.tar.bz2 sharkey-c932f7a25bfd0944b21fc026a647fa1d04750418.zip | |
Resolve #1736
Diffstat (limited to 'src/queue/processors/db/index.ts')
| -rw-r--r-- | src/queue/processors/db/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/queue/processors/db/index.ts b/src/queue/processors/db/index.ts index 4a97a1c884..1bc9a9af7c 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 { importFollowing } from './import-following'; import { importUserLists } from './import-user-lists'; const jobs = { @@ -16,6 +17,7 @@ const jobs = { exportMute, exportBlocking, exportUserLists, + importFollowing, importUserLists } as any; |