From a452101b26d75cd42fefe4ec9ffb93c8c52fe1a7 Mon Sep 17 00:00:00 2001 From: tarteo Date: Fri, 3 Jul 2026 13:38:26 +0200 Subject: [PATCH] [FIX] website_altcha: Add sitemap value for `/altcha` route --- website_altcha/controllers/altcha.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website_altcha/controllers/altcha.py b/website_altcha/controllers/altcha.py index a0b031bcd8..442c2ad83e 100644 --- a/website_altcha/controllers/altcha.py +++ b/website_altcha/controllers/altcha.py @@ -9,7 +9,7 @@ class AltchaController(http.Controller): - @http.route("/altcha", type="http", auth="public", website=True) + @http.route("/altcha", type="http", auth="public", website=True, sitemap=False) def generate_altcha_challenge(self): timeout = int(request.website.sudo().altcha_timeout or 5) cost = int(request.website.sudo().altcha_cost or 1_000)