Ejemplo n.º 1
0
        public async Task <IActionResult> DeleteComment(uint cid)
        {
            var res = await _contentRepository.DeleteCommentAsync(this.GetAuthorization(), cid);

            return(Json(res));
        }