mirror of https://github.com/Chocobozzz/PeerTube
25 lines
629 B
TypeScript
25 lines
629 B
TypeScript
|
import express from 'express'
|
||
|
import { VideoChannelSyncModel } from '@server/models/video/video-channel-sync'
|
||
|
import { HttpStatusCode } from '@shared/models'
|
||
|
|
||
|
async function doesVideoChannelSyncIdExist (id: number, res: express.Response) {
|
||
|
const sync = await VideoChannelSyncModel.loadWithChannel(+id)
|
||
|
|
||
|
if (!sync) {
|
||
|
res.fail({
|
||
|
status: HttpStatusCode.NOT_FOUND_404,
|
||
|
message: 'Video channel sync not found'
|
||
|
})
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
res.locals.videoChannelSync = sync
|
||
|
return true
|
||
|
}
|
||
|
|
||
|
// ---------------------------------------------------------------------------
|
||
|
|
||
|
export {
|
||
|
doesVideoChannelSyncIdExist
|
||
|
}
|