fixies the refact of blog spot index
All checks were successful
Dotnet build and test / log-the-inputs (push) Successful in 5s
Dotnet build and test / build (push) Successful in 1m58s

This commit is contained in:
Paul Schneider
2025-06-29 19:53:56 +01:00
parent fdf75934e5
commit 3f1bfc1c3c
13 changed files with 46 additions and 31 deletions

View File

@ -47,7 +47,7 @@ namespace Yavsc.Controllers
await blogSpotService.UserPosts(id, User.GetUserId(),
skip, take));
}
var byTitle = await this.blogSpotService.IndexByTitle(User, id, skip, take);
IEnumerable<IGrouping<string,IBlogPost>> byTitle = await this.blogSpotService.IndexByTitle(User, id, skip, take);
return View(byTitle);
}