forked from enviPath/enviPy
Initial bayer app Show Pack Classification Adjusted docker compose to bayer specifics Adjusted Dockerfile for Bayer Adding secret flags to group, add secret pools to packages Adjusted View for Package creation Prep configs, added Package Create Modal wip More on PES wip wip
20 lines
499 B
Python
20 lines
499 B
Python
from django.urls import re_path
|
|
|
|
from . import views as v
|
|
|
|
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})/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",
|
|
),
|
|
]
|