diff options
Diffstat (limited to 'server/controllers/api/videos/abuse.ts')
-rw-r--r-- | server/controllers/api/videos/abuse.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/controllers/api/videos/abuse.ts b/server/controllers/api/videos/abuse.ts index 7a3471116..29f901f60 100644 --- a/server/controllers/api/videos/abuse.ts +++ b/server/controllers/api/videos/abuse.ts | |||
@@ -70,12 +70,12 @@ async function reportVideoAbuse (req: express.Request, res: express.Response) { | |||
70 | reporterUsername, | 70 | reporterUsername, |
71 | reason: body.reason, | 71 | reason: body.reason, |
72 | videoId: videoInstance.id, | 72 | videoId: videoInstance.id, |
73 | reporterPodId: null // This is our pod that reported this abuse | 73 | reporterServerId: null // This is our server that reported this abuse |
74 | } | 74 | } |
75 | 75 | ||
76 | await db.sequelize.transaction(async t => { | 76 | await db.sequelize.transaction(async t => { |
77 | const abuse = await db.VideoAbuse.create(abuseToCreate, { transaction: t }) | 77 | const abuse = await db.VideoAbuse.create(abuseToCreate, { transaction: t }) |
78 | // We send the information to the destination pod | 78 | // We send the information to the destination server |
79 | if (videoInstance.isOwned() === false) { | 79 | if (videoInstance.isOwned() === false) { |
80 | const reportData = { | 80 | const reportData = { |
81 | reporterUsername, | 81 | reporterUsername, |
@@ -84,7 +84,7 @@ async function reportVideoAbuse (req: express.Request, res: express.Response) { | |||
84 | } | 84 | } |
85 | 85 | ||
86 | // await friends.reportAbuseVideoToFriend(reportData, videoInstance, t) | 86 | // await friends.reportAbuseVideoToFriend(reportData, videoInstance, t) |
87 | // TODO: send abuse to origin pod | 87 | // TODO: send abuse to origin server |
88 | } | 88 | } |
89 | }) | 89 | }) |
90 | 90 | ||