public async Task <IActionResult> Unlike(Guid commentId)
        {
            var token  = GetToken();
            var userId = LoginHelper.GetClaim(token, "UserId");

            await _commentAppService.Unlike(Guid.Parse(userId), commentId);

            return(Ok());
        }