public async Task <ActionResult> GetVideoById(Guid id)
        {
            VideoDto videoDto = await _videoService.GetVideoById(id, User.Identity.Name);

            await _videoService.AddView(id);

            return(Ok(videoDto));
        }