flows: allow splicing a planned flow into an active plan - #24845
flows: allow splicing a planned flow into an active plan#24845dominic-r wants to merge 1 commit into
Conversation
✅ Deploy Preview for authentik-storybook ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for authentik-integrations ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for authentik-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #24845 +/- ##
=======================================
Coverage 91.41% 91.41%
=======================================
Files 1145 1145
Lines 71759 71789 +30
Branches 3875 3875
=======================================
+ Hits 65595 65625 +30
Misses 6129 6129
Partials 35 35
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. |
ceeacf9 to
5cce72d
Compare
5cce72d to
8c90ab0
Compare
|
authentik PR Installation instructions Instructions for docker-composeAdd the following block to your AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
AUTHENTIK_TAG=gh-39a2fe7eda1356ef15b320330cc4c55fe1c2d6ac
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)sAfterwards, run the upgrade commands from the latest release notes. Instructions for KubernetesAdd the following block to your authentik:
outposts:
container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
global:
image:
repository: ghcr.io/goauthentik/dev-server
tag: gh-39a2fe7eda1356ef15b320330cc4c55fe1c2d6acAfterwards, run the upgrade commands from the latest release notes. |
8c90ab0 to
35d59ce
Compare
35d59ce to
39a2fe7
Compare
Adds
FlowPlan.insert_plan()to insert another planned flow's bindings and markers into an active plan, and acheck_authenticationtoggle onFlowPlannerso callers that have already established the user's identity mid-flow can plan a flow for a pending user. Groundwork for running required action flows inside a login, used by the next PR in this stack.