pitit refact

This commit is contained in:
Paul Schneider 2026-06-04 12:13:37 +01:00
commit 20713eef64
235 changed files with 5374 additions and 373 deletions

View file

@ -30,8 +30,8 @@ namespace Yavsc.Controllers
public async Task<IActionResult> Index(int skip = 0, int take = 25)
{
if (take > 50) return BadRequest();
ViewData["skip"]=skip;
ViewData["take"]=take;
ViewBag.skip=skip;
ViewBag.take=take;
return View(await _context.Bug.Skip(skip).Take(take).ToListAsync());
}