Esempio n. 1
0
        public ActionResult CreateCrush(long targetId)
        {
            var crushService = new CrushService(RavenSession);

            var crush = crushService.Crush(UserId.ToLongId(), targetId, null);

            return Json(new { success = true });
        }