コード例 #1
0
        public async Task <IActionResult> Comment(CommentsViewModel model)
        {
            model.userId = Guid.Parse(GetUser().Result.Id);
            await commentsService.CommentOnPost(model);

            return(Ok());
        }