From 81e51ae7bcc0b679ec604511b5bb710c3142fd5b Mon Sep 17 00:00:00 2001 From: giles Date: Sat, 28 Feb 2026 22:50:16 +0000 Subject: [PATCH] Fix settings cog URL: /settings/ not /admin/ Co-Authored-By: Claude Opus 4.6 --- shared/sexp/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/sexp/helpers.py b/shared/sexp/helpers.py index 4fba57f..643d46d 100644 --- a/shared/sexp/helpers.py +++ b/shared/sexp/helpers.py @@ -35,7 +35,7 @@ def root_header_html(ctx: dict, *, oob: bool = False) -> str: """Build the root header row HTML.""" rights = ctx.get("rights") or {} is_admin = rights.get("admin") if isinstance(rights, dict) else getattr(rights, "admin", False) - settings_url = call_url(ctx, "blog_url", "/admin/") if is_admin else "" + settings_url = call_url(ctx, "blog_url", "/settings/") if is_admin else "" return render( "header-row", cart_mini_html=ctx.get("cart_mini_html", ""),