aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/middlewares/validators/shared/video-channel-syncs.ts
blob: a6e51eb97f4d4ff5077ae68aa9aaa64fa15dc1ff (plain) (tree)























                                                                                
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
}