forked from enviPath/enviPy
wip
This commit is contained in:
@ -2,7 +2,13 @@ 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})/compound$",
|
||||
v.create_pes,
|
||||
name="create pes",
|
||||
),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user