Beispiel #1
0
        public IHttpActionResult FlaggedComments()
        {
            var flaggedComments = q.FlaggedComments();

            if (flaggedComments != null)
            {
                return(Ok(flaggedComments));
            }
            return(BadRequest("Did not find any flagged comments"));
        }