Exemplo n.º 1
0
        public static void ReportAbusiveComment(int commentId)
        {
            var service = new SpamReportService();

            service.Create(new SpamReport
            {
                CommentId  = commentId,
                ReporterId = Auth.user().Id
            });
        }