Badges.Controllers.BadgeController.Browse C# (CSharp) Method

Browse() public method

Browse all badges in the system
public Browse ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult Browse()
        {
            var badges = RepositoryFactory.BadgeRepository.Queryable.Where(x=>x.Approved).Fetch(x=>x.Category);

            return View(badges.ToList());
        }