Exemple #1
0
        public ActionResult Like(string userId, int postId)
        {
            _likeOperations.IncrementLikes(User.Identity.GetUserId(), postId);
            var x = _blogPostOperations.GetBlogPostByIdFull(postId);

            return(PartialView("Post", x.BlogPost));
        }