feat: add per-package pathway prediction

This commit is contained in:
2025-11-12 18:05:44 +13:00
parent 305fdc41fb
commit d9e4660fd4
4 changed files with 35 additions and 5 deletions

View File

@ -142,6 +142,11 @@ urlpatterns = [
v.package_pathway,
name="package pathway detail",
),
re_path(
rf"^package/(?P<package_uuid>{UUID})/predict$",
v.package_predict_pathway,
name="package predict pathway",
),
# Pathway Nodes
re_path(
rf"^package/(?P<package_uuid>{UUID})/pathway/(?P<pathway_uuid>{UUID})/node$",