(ctx *gin.Context)
| 615 | } |
| 616 | |
| 617 | func (tc *TemplateController) OpenSearch(ctx *gin.Context) { |
| 618 | if tc.checkPrivateMode(ctx) { |
| 619 | tc.Page404(ctx) |
| 620 | return |
| 621 | } |
| 622 | tc.templateRenderController.OpenSearch(ctx) |
| 623 | } |
| 624 | |
| 625 | func (tc *TemplateController) Sitemap(ctx *gin.Context) { |
| 626 | if tc.checkPrivateMode(ctx) { |
nothing calls this directly
no test coverage detected