(ctx *gin.Context)
| 623 | } |
| 624 | |
| 625 | func (tc *TemplateController) Sitemap(ctx *gin.Context) { |
| 626 | if tc.checkPrivateMode(ctx) { |
| 627 | tc.Page404(ctx) |
| 628 | return |
| 629 | } |
| 630 | tc.templateRenderController.Sitemap(ctx) |
| 631 | } |
| 632 | |
| 633 | func (tc *TemplateController) SitemapPage(ctx *gin.Context) { |
| 634 | if tc.checkPrivateMode(ctx) { |
nothing calls this directly
no test coverage detected