ASTE.Modules.APIDiscovery.Controllers.ProcessController.Index C# (CSharp) Method

Index() public method

Displays the Index view of the processes
public Index ( ) : ActionResult
return ActionResult
        public ActionResult Index()
        {
            var modules = ctx.modules.Where(x => !x.isdeleted && x.isProcess).ToList();
            return View(modules);
        }