git-unica
Results
1
issues of
git-unica
``` @Command('video_job:callback {videoId}') async videoJobCallback(_cli: ConsoleIO) { const videoId = _cli.argument('videoId'); const videoJob = await this.videosService.findJobByVideoId(videoId); if (videoJob) { if (!videoJob.callback_url) { _cli.error('No callback_url'); return; } const video = videoJob.video;...