123456789101112131415161718192021222324 |
- 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
- }
|