From 562b9915b5c179c4704d098be0cb92d81df56754 Mon Sep 17 00:00:00 2001 From: the1mason Date: Fri, 8 Aug 2025 00:55:43 +0500 Subject: [PATCH] anything --- src/FastBlog.Web/Controllers/FilesController.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/FastBlog.Web/Controllers/FilesController.cs b/src/FastBlog.Web/Controllers/FilesController.cs index 774609b..0ea5459 100644 --- a/src/FastBlog.Web/Controllers/FilesController.cs +++ b/src/FastBlog.Web/Controllers/FilesController.cs @@ -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); } } \ No newline at end of file