This commit is contained in:
the1mason 2025-08-08 00:55:43 +05:00
parent b3b910d443
commit 562b9915b5
1 changed files with 2 additions and 1 deletions

View File

@ -71,6 +71,7 @@ public class FilesController(FileService fileService) : Controller
}; };
} }
return await Index(); var files = await fileService.GetFiles(new PagedRequest(25, 0));
return View("Index", files);
} }
} }