Exemplo n.º 1
0
        public async Task <IActionResult> ArchiveVideo([FromRoute] int videoId)
        {
            await _videoService.ArchiveVideo(videoId, this.CurrentUserId.Value);

            return(this.Ok());
        }