Skip to content

Commit

Permalink
ulio
Browse files Browse the repository at this point in the history
  • Loading branch information
trishorts committed Apr 5, 2024
1 parent aeb9c9f commit 97d2575
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions MetaPAL/Controllers/ReposController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ public ReposController(ApplicationDbContext context)
// GET: ReposController
public async Task<IActionResult> Index()
{


List<SelectListItem> selectListItems = new List<SelectListItem>()
{
new SelectListItem("Title", "Title"),
Expand All @@ -31,8 +29,6 @@ public async Task<IActionResult> Index()
if (_context.Repos == null)
return Problem("Entity set 'ApplicationDbContext.Repos' is null.");
return View(await _context.Repos.ToListAsync());


}

// GET: ReposController/Details/5
Expand Down

0 comments on commit 97d2575

Please sign in to comment.