fix: correct BlogService GetPublishedPagedAsync parameter order
TaxBaik CI/CD / build-and-deploy (push) Failing after 1m25s
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:
@@ -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>
|
||||
Reference in New Issue
Block a user