diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-03-11 09:59:07 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-03-11 09:59:07 +0900 |
| commit | ce0d4f77fae0452369ed430dc1866a8ec5f4b2ca (patch) | |
| tree | 14892ed2d8f49a2ece4405653d837d87df4d6916 /src/queue/processors/db/index.ts | |
| parent | Remove debug code (diff) | |
| download | sharkey-ce0d4f77fae0452369ed430dc1866a8ec5f4b2ca.tar.gz sharkey-ce0d4f77fae0452369ed430dc1866a8ec5f4b2ca.tar.bz2 sharkey-ce0d4f77fae0452369ed430dc1866a8ec5f4b2ca.zip | |
リストのエクスポートをできるように
#4259
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 31a176cdae..8ac9c1a3d6 100644 --- a/src/queue/processors/db/index.ts +++ b/src/queue/processors/db/index.ts @@ -5,6 +5,7 @@ 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'; const jobs = { deleteNotes, @@ -13,6 +14,7 @@ const jobs = { exportFollowing, exportMute, exportBlocking, + exportUserLists } as any; export default function(dbQueue: Bull.Queue) { |