From ce0d4f77fae0452369ed430dc1866a8ec5f4b2ca Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 11 Mar 2019 09:59:07 +0900 Subject: リストのエクスポートをできるように MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #4259 --- src/queue/processors/db/index.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/queue/processors/db/index.ts') 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) { -- cgit v1.2.3-freya