public ActionResult AddComment(CreateCommentViewModel model)
 {
     model.UserId = GetCurrentUserId();
     _ticketService.AddComment(model);
     return(Json(new { success = true }));
 }