fix: correct BlogService GetPublishedPagedAsync parameter order
TaxBaik CI/CD / build-and-deploy (push) Failing after 1m25s

Use named parameters for clarity:
- categoryId: null
- ct: ct (cancellation token)

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-07-04 04:48:52 +09:00
parent 8591d93b88
commit a554e1795a
3 changed files with 61 additions and 63 deletions
-14
View File
@@ -1,14 +0,0 @@
@page "/sitemap.xml"
@model TaxBaik.Web.Pages.SitemapModel
@{
Response.ContentType = "application/xml";
}<?xml version="1.0" encoding="utf-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
@foreach (var url in Model.Urls)
{
<url>
<loc>@url</loc>
<lastmod>@DateTime.UtcNow:yyyy-MM-dd</lastmod>
</url>
}
</urlset>