wip
Some checks failed
API CI / api-tests (pull_request) Failing after 20s
CI / test (pull_request) Failing after 23s

This commit is contained in:
Tim Lorsbach
2026-04-21 10:26:35 +02:00
parent 4012ac356b
commit 170f00504f
28 changed files with 653 additions and 69 deletions

View File

@ -7,8 +7,13 @@ UUID = "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}"
urlpatterns = [
re_path(r"^depict_pes$", v.visualize_pes, name="depict_pes"),
re_path(
rf"^package/(?P<package_uuid>{UUID})/compound$",
rf"^package/(?P<package_uuid>{UUID})/pes$",
v.create_pes,
name="create pes",
),
re_path(
rf"^package/(?P<package_uuid>{UUID})/pathway/(?P<pathway_uuid>{UUID})/pes$",
v.create_pes_node,
name="create pes node",
),
]