Compare commits

..
7 Commits
Author SHA1 Message Date
Tim Lorsbach 161a67b6d6 wip
API CI / api-tests (pull_request) Failing after 18s
CI / test (pull_request) Failing after 16s
2026-05-28 22:18:11 +02:00
Tim Lorsbach 49356d84d0 API PES 2026-05-28 22:18:11 +02:00
Tim Lorsbach 91fbe6f42d PW interactions 2026-05-28 22:18:11 +02:00
Tim Lorsbach a5a496a190 minor 2026-05-28 22:18:11 +02:00
Tim Lorsbach d118cdd8f7 Wip 2026-05-28 22:18:11 +02:00
Tim Lorsbach a629c23cb5 adjusted migration
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
2026-05-28 22:18:11 +02:00
jebusandTim Lorsbach 868bbf5c05 [Fix] False as multi_step default in legacy API (#406)
Co-authored-by: Tim Lorsbach <tim@lorsba.ch>
Reviewed-on: enviPath/enviPy#406
2026-05-29 08:12:52 +12:00
+1 -1
View File
@@ -2178,7 +2178,7 @@ def add_pathway_edge(request, package_uuid, pathway_uuid, e: Form[CreateEdge]):
for pr in e.products.split(","):
products.append(Node.objects.get(pathway=pw, url=pr.strip()))
multi_step = None
multi_step = False
if e.multistep and e.multistep.strip() == "true":
multi_step = True