From 25ac3db6441acb893164b2d0114a858df3b58cee Mon Sep 17 00:00:00 2001 From: giles Date: Mon, 23 Feb 2026 23:26:10 +0000 Subject: [PATCH] Add artdag_url() helper for cross-app navigation Co-Authored-By: Claude Opus 4.6 --- infrastructure/urls.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/infrastructure/urls.py b/infrastructure/urls.py index bfa591b..28bcb45 100644 --- a/infrastructure/urls.py +++ b/infrastructure/urls.py @@ -45,6 +45,10 @@ def account_url(path: str = "/") -> str: return app_url("account", path) +def artdag_url(path: str = "/") -> str: + return app_url("artdag", path) + + def page_cart_url(page_slug: str, path: str = "/") -> str: if not path.startswith("/"): path = "/" + path