-
Notifications
You must be signed in to change notification settings - Fork 899
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Introduce Flowpilot - integration #1532
Commits on Jul 22, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 19a0443 - Browse repository at this point
Copy the full SHA 19a0443View commit details -
Configuration menu - View commit details
-
Copy full SHA for 76fc4b1 - Browse repository at this point
Copy the full SHA 76fc4b1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 36e8db1 - Browse repository at this point
Copy the full SHA 36e8db1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 57cf495 - Browse repository at this point
Copy the full SHA 57cf495View commit details -
Configuration menu - View commit details
-
Copy full SHA for b3ca375 - Browse repository at this point
Copy the full SHA b3ca375View commit details -
Configuration menu - View commit details
-
Copy full SHA for f46f76c - Browse repository at this point
Copy the full SHA f46f76cView commit details -
Configuration menu - View commit details
-
Copy full SHA for a6e1530 - Browse repository at this point
Copy the full SHA a6e1530View commit details -
Update backend/flow_api/shared/services/webauthn.go
Co-authored-by: Frederic Jahn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 81118ab - Browse repository at this point
Copy the full SHA 81118abView commit details -
Configuration menu - View commit details
-
Copy full SHA for c9b6cb8 - Browse repository at this point
Copy the full SHA c9b6cb8View commit details -
Configuration menu - View commit details
-
Copy full SHA for bb3697b - Browse repository at this point
Copy the full SHA bb3697bView commit details -
Configuration menu - View commit details
-
Copy full SHA for df9363d - Browse repository at this point
Copy the full SHA df9363dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 96dc853 - Browse repository at this point
Copy the full SHA 96dc853View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6b8d5ce - Browse repository at this point
Copy the full SHA 6b8d5ceView commit details -
Configuration menu - View commit details
-
Copy full SHA for 69b9b85 - Browse repository at this point
Copy the full SHA 69b9b85View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1ca6f6f - Browse repository at this point
Copy the full SHA 1ca6f6fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 147ec48 - Browse repository at this point
Copy the full SHA 147ec48View commit details -
Configuration menu - View commit details
-
Copy full SHA for 61aa537 - Browse repository at this point
Copy the full SHA 61aa537View commit details -
Configuration menu - View commit details
-
Copy full SHA for c82db5c - Browse repository at this point
Copy the full SHA c82db5cView commit details -
fix: skip on passkey onboarding in registration flow
The hook creating users is not aware of whether a user skipped passkey onboarding. In case of a skip no credential is created but the hook assumes there is a stringified credential avalable on the stash. It attempts to unmarshal it but this fails. This commit fixes it by first checking if a credential exists on the stash.
Configuration menu - View commit details
-
Copy full SHA for 32fac03 - Browse repository at this point
Copy the full SHA 32fac03View commit details -
fix(flowpilot): email regex match on empty or nil input value
* fix: email regex match on empty or nil input value Input validation currently attempts a regex match on email input values even if the input is optional but empty or nil. The match fails and validation returns an error. This commit fixes it by first checking if the input is optional and whether it has an empty or nil value. * fix: email input regex validation when input is required
Configuration menu - View commit details
-
Copy full SHA for 930bfcd - Browse repository at this point
Copy the full SHA 930bfcdView commit details -
Configuration menu - View commit details
-
Copy full SHA for c0ca487 - Browse repository at this point
Copy the full SHA c0ca487View commit details -
Configuration menu - View commit details
-
Copy full SHA for 61332ae - Browse repository at this point
Copy the full SHA 61332aeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 01913e2 - Browse repository at this point
Copy the full SHA 01913e2View commit details -
Configuration menu - View commit details
-
Copy full SHA for e01ef12 - Browse repository at this point
Copy the full SHA e01ef12View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5b6738e - Browse repository at this point
Copy the full SHA 5b6738eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 34cb966 - Browse repository at this point
Copy the full SHA 34cb966View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8b327d8 - Browse repository at this point
Copy the full SHA 8b327d8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 59ebaab - Browse repository at this point
Copy the full SHA 59ebaabView commit details -
Configuration menu - View commit details
-
Copy full SHA for e47a900 - Browse repository at this point
Copy the full SHA e47a900View commit details -
Configuration menu - View commit details
-
Copy full SHA for 83b8938 - Browse repository at this point
Copy the full SHA 83b8938View commit details -
fix: passkey onboarding skip action
Skipping is now controlled by a boolean in the stash and is only available after a passcode verification or password registration.
Configuration menu - View commit details
-
Copy full SHA for edfb078 - Browse repository at this point
Copy the full SHA edfb078View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6b3d9a1 - Browse repository at this point
Copy the full SHA 6b3d9a1View commit details -
Configuration menu - View commit details
-
Copy full SHA for be0b3b3 - Browse repository at this point
Copy the full SHA be0b3b3View commit details -
Configuration menu - View commit details
-
Copy full SHA for bc8728f - Browse repository at this point
Copy the full SHA bc8728fView commit details -
feat: extend user persister get method
The persister now loads the password credential from the DB. It also loads the webauthn credential transports from the DB now.
Configuration menu - View commit details
-
Copy full SHA for 377d190 - Browse repository at this point
Copy the full SHA 377d190View commit details -
feat: rework flow api profile action initializations
When generating the response after an action execution, schema generation and initialization of actions for the next state are skipped if the execution result already contains an execution schema (which should be the case if the action executed successfully). This leads to problems when the action that was executed is also an action for the next state (which is the case for profile actions, where e.g. after deleting an email the flow returns to the profile init state, which again may offer to execute the same action again, i.e. delete additional emails): if the action execution leads to a state (of data) where the "next execution" for the same action then should be suspended and the action should not be part of the response (e.g. when trying to delete the last webauthn credential if webauthn is the only auth method configured), then skipping the initialization results in creating a response based on old/stale data, i.e. the action is part of the response and is "offered" as a valid action when it actually should not. This commit fixes that by removing the check for an existing exexution. This has the drawback that the action is initialized twice.
Configuration menu - View commit details
-
Copy full SHA for 575cab3 - Browse repository at this point
Copy the full SHA 575cab3View commit details -
fix: json ignore emails field in user model again
This should no longer required due to the dedicated profile dto struct.
Configuration menu - View commit details
-
Copy full SHA for 7b7d870 - Browse repository at this point
Copy the full SHA 7b7d870View commit details -
feat: share email verification hook
Rename the hook to make it more obvious that it is resonsible for persisting the verification status for an email after verification. Move it to the shared package because the login flow also needs it, e.g. if email verification was activated retroactively and users logging in with previously unverified email addresses also correctly have said email's verification status set to verified. Add a noop case if the email address already exists and is also already verfified.
Configuration menu - View commit details
-
Copy full SHA for a847e0c - Browse repository at this point
Copy the full SHA a847e0cView commit details -
Configuration menu - View commit details
-
Copy full SHA for e58cecf - Browse repository at this point
Copy the full SHA e58cecfView commit details -
fix: restore restore schema generation logic
Skipping schema generation for the next state actions if the schema already existed was previously removed. This results in errors added to inputs during execution not being part of the response because a new schema without error information was generated. This change reverts this. If any action changes data such that it leads to a state of data where the same action should be suspended for the next execution (esp. in case of the profile where successful actions result in the same state as the previous one and where the same action might be part of the available actions) then the action can/should now check the new state of data for suspension during execution and then set a flag on the context/execution result accordingly (capabilites to do so are introduced with these changes). Schema generation is then skipped if there already is a schema and if the suspension flag is set to true.
Configuration menu - View commit details
-
Copy full SHA for e4fb3fb - Browse repository at this point
Copy the full SHA e4fb3fbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 209122c - Browse repository at this point
Copy the full SHA 209122cView commit details -
fix: flow api profile after concurrency fix
Allow hooks to be run before each action. Introduce Finalize interface method for actions.
Configuration menu - View commit details
-
Copy full SHA for e9f078f - Browse repository at this point
Copy the full SHA e9f078fView commit details -
fix: nil pointer exception when accessing the flow error (#1345)
* fix: nil pointer exception when accessing the flow error
Configuration menu - View commit details
-
Copy full SHA for f64464e - Browse repository at this point
Copy the full SHA f64464eView commit details -
Flow api improve handling when email is unknown (#1240)
* feat: passcode handling when email is unknown * feat: new passcode templates and improved behaviour to prevent email address enumeration
Configuration menu - View commit details
-
Copy full SHA for 015e56b - Browse repository at this point
Copy the full SHA 015e56bView commit details -
Configuration menu - View commit details
-
Copy full SHA for f0e9d73 - Browse repository at this point
Copy the full SHA f0e9d73View commit details -
Configuration menu - View commit details
-
Copy full SHA for ed3c284 - Browse repository at this point
Copy the full SHA ed3c284View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7e287f3 - Browse repository at this point
Copy the full SHA 7e287f3View commit details -
feat(flow-api): add audit logs
Co-authored-by: Frederic Jahn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a631fa3 - Browse repository at this point
Copy the full SHA a631fa3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4d763b9 - Browse repository at this point
Copy the full SHA 4d763b9View commit details -
feat(flow-api): enable webauthn login with conditional mediation
- Modifies the send_capabilities action by adding a new input for providing information about availability of conditional mediation on a client and stashing the value for further use. - Adds and applies a login flow hook that generates WebAuthn request options before the login_init state if conditional mediation is available (see point above) and applies the options to the response payload. - Applies the existing action for verifying a WebAuthn assertion to the login_init state. Because said action is now used on both mediated and un-mediated logins, it needs to know both the state the flow is in and the information about mediation availability in order to correctly suspend the action in the login_init state. Therefore I extended the InitalizationContext interface with a method to check whether the current state of a flow equals some other state. For this to work, the default implementation of the InitalizationContext had to be extended with a field to hold the FlowModel in order to have access to state information.
Configuration menu - View commit details
-
Copy full SHA for c90ff63 - Browse repository at this point
Copy the full SHA c90ff63View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7a14bd7 - Browse repository at this point
Copy the full SHA 7a14bd7View commit details -
feat: introduce flow-api sdk and adjust the api response (#1299)
* feat: introduce flow-api sdk and adjust the response --------- Co-authored-by: merlindru <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for bfd2d62 - Browse repository at this point
Copy the full SHA bfd2d62View commit details -
Configuration menu - View commit details
-
Copy full SHA for b32aff4 - Browse repository at this point
Copy the full SHA b32aff4View commit details -
* chore: add back-action to the password creation state * fix: webauthn service errors corrected * chore: add back-action to the login passkey state * fix: the 'public_key' input of the verify attestation action is a string type * chore: add back-action to the profile verify attestation state * chore: set default PublicActions to the PublicResponse struct, when creating a flow result * fix: after state hook to persist webauthn creds returns an error * chore: also introduce the back-action to the passkey onboarding subflow
Configuration menu - View commit details
-
Copy full SHA for a2a20e5 - Browse repository at this point
Copy the full SHA a2a20e5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 399d1d5 - Browse repository at this point
Copy the full SHA 399d1d5View commit details -
* fix: nil pointer exception while validating min and max length * chore: change public_key input type to json * chore: add the actual username to the related input field * chore: add a value for max_length to the password input
Configuration menu - View commit details
-
Copy full SHA for b6b0a08 - Browse repository at this point
Copy the full SHA b6b0a08View commit details -
feat: add user data to payload on success (#1444)
* feat: add user data to payload on success * Update backend/flow_api/flow/shared/hook_get_user_data.go Co-authored-by: Lennart Fleischmann <[email protected]> --------- Co-authored-by: Lennart Fleischmann <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for cc25c1f - Browse repository at this point
Copy the full SHA cc25c1fView commit details -
feat: Hanko elements with flow api (#1443)
* feat: hanko elements with flow api
Configuration menu - View commit details
-
Copy full SHA for 976b122 - Browse repository at this point
Copy the full SHA 976b122View commit details -
Feat add conditional UI (#1472)
* feat: try to add condUI * adjust abort signal handling * fix: do not show cui on registration input * chore: remove unnecessary code * chore: remove comments --------- Co-authored-by: bjoern-m <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 428e648 - Browse repository at this point
Copy the full SHA 428e648View commit details -
Configuration menu - View commit details
-
Copy full SHA for 254f4d2 - Browse repository at this point
Copy the full SHA 254f4d2View commit details -
Configuration menu - View commit details
-
Copy full SHA for ce91ea3 - Browse repository at this point
Copy the full SHA ce91ea3View commit details -
Configuration menu - View commit details
-
Copy full SHA for bf0dc06 - Browse repository at this point
Copy the full SHA bf0dc06View commit details -
Configuration menu - View commit details
-
Copy full SHA for 905a568 - Browse repository at this point
Copy the full SHA 905a568View commit details -
Configuration menu - View commit details
-
Copy full SHA for 98146aa - Browse repository at this point
Copy the full SHA 98146aaView commit details -
Configuration menu - View commit details
-
Copy full SHA for aa58cee - Browse repository at this point
Copy the full SHA aa58ceeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 25f1bc6 - Browse repository at this point
Copy the full SHA 25f1bc6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 90c9cda - Browse repository at this point
Copy the full SHA 90c9cdaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5060a49 - Browse repository at this point
Copy the full SHA 5060a49View commit details -
Configuration menu - View commit details
-
Copy full SHA for 368d79c - Browse repository at this point
Copy the full SHA 368d79cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5698e52 - Browse repository at this point
Copy the full SHA 5698e52View commit details -
Configuration menu - View commit details
-
Copy full SHA for e7fe720 - Browse repository at this point
Copy the full SHA e7fe720View commit details -
Configuration menu - View commit details
-
Copy full SHA for 27f145a - Browse repository at this point
Copy the full SHA 27f145aView commit details -
Configuration menu - View commit details
-
Copy full SHA for c1d3efe - Browse repository at this point
Copy the full SHA c1d3efeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5106538 - Browse repository at this point
Copy the full SHA 5106538View commit details -
Configuration menu - View commit details
-
Copy full SHA for b477a37 - Browse repository at this point
Copy the full SHA b477a37View commit details -
Configuration menu - View commit details
-
Copy full SHA for f3e306a - Browse repository at this point
Copy the full SHA f3e306aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3eb627f - Browse repository at this point
Copy the full SHA 3eb627fView commit details -
Configuration menu - View commit details
-
Copy full SHA for df5e598 - Browse repository at this point
Copy the full SHA df5e598View commit details -
Configuration menu - View commit details
-
Copy full SHA for 04e42d3 - Browse repository at this point
Copy the full SHA 04e42d3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 09c7e42 - Browse repository at this point
Copy the full SHA 09c7e42View commit details -
Configuration menu - View commit details
-
Copy full SHA for 46cfedd - Browse repository at this point
Copy the full SHA 46cfeddView commit details -
Configuration menu - View commit details
-
Copy full SHA for f25d78a - Browse repository at this point
Copy the full SHA f25d78aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 62cf1a4 - Browse repository at this point
Copy the full SHA 62cf1a4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 19a43e0 - Browse repository at this point
Copy the full SHA 19a43e0View commit details -
Configuration menu - View commit details
-
Copy full SHA for d5d795d - Browse repository at this point
Copy the full SHA d5d795dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 71ed347 - Browse repository at this point
Copy the full SHA 71ed347View commit details -
Configuration menu - View commit details
-
Copy full SHA for 13cf3a4 - Browse repository at this point
Copy the full SHA 13cf3a4View commit details -
Configuration menu - View commit details
-
Copy full SHA for c76c83c - Browse repository at this point
Copy the full SHA c76c83cView commit details -
Configuration menu - View commit details
-
Copy full SHA for fa21a66 - Browse repository at this point
Copy the full SHA fa21a66View commit details -
Configuration menu - View commit details
-
Copy full SHA for ddd90de - Browse repository at this point
Copy the full SHA ddd90deView commit details -
Configuration menu - View commit details
-
Copy full SHA for c397eea - Browse repository at this point
Copy the full SHA c397eeaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6c11d49 - Browse repository at this point
Copy the full SHA 6c11d49View commit details -
Configuration menu - View commit details
-
Copy full SHA for 29cdbae - Browse repository at this point
Copy the full SHA 29cdbaeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 15f7eb8 - Browse repository at this point
Copy the full SHA 15f7eb8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7e3ede7 - Browse repository at this point
Copy the full SHA 7e3ede7View commit details -
Configuration menu - View commit details
-
Copy full SHA for d23bf6f - Browse repository at this point
Copy the full SHA d23bf6fView commit details -
Configuration menu - View commit details
-
Copy full SHA for f85bf99 - Browse repository at this point
Copy the full SHA f85bf99View commit details -
fix: login credential onboarding logic
Current logic did not take into account whether auth methods/user details are enabled or not.
Configuration menu - View commit details
-
Copy full SHA for b3f377f - Browse repository at this point
Copy the full SHA b3f377fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 22f56d2 - Browse repository at this point
Copy the full SHA 22f56d2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4d54ced - Browse repository at this point
Copy the full SHA 4d54cedView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9f8d5c8 - Browse repository at this point
Copy the full SHA 9f8d5c8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 365190c - Browse repository at this point
Copy the full SHA 365190cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6c7476a - Browse repository at this point
Copy the full SHA 6c7476aView commit details -
Configuration menu - View commit details
-
Copy full SHA for dc729f6 - Browse repository at this point
Copy the full SHA dc729f6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 736428e - Browse repository at this point
Copy the full SHA 736428eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5b282b3 - Browse repository at this point
Copy the full SHA 5b282b3View commit details -
Configuration menu - View commit details
-
Copy full SHA for e1c6b97 - Browse repository at this point
Copy the full SHA e1c6b97View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7c52cf6 - Browse repository at this point
Copy the full SHA 7c52cf6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5982cf3 - Browse repository at this point
Copy the full SHA 5982cf3View commit details -
Configuration menu - View commit details
-
Copy full SHA for d63ab76 - Browse repository at this point
Copy the full SHA d63ab76View commit details -
Configuration menu - View commit details
-
Copy full SHA for e4bd711 - Browse repository at this point
Copy the full SHA e4bd711View commit details -
Configuration menu - View commit details
-
Copy full SHA for b000088 - Browse repository at this point
Copy the full SHA b000088View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4637690 - Browse repository at this point
Copy the full SHA 4637690View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8d5ed98 - Browse repository at this point
Copy the full SHA 8d5ed98View commit details -
Configuration menu - View commit details
-
Copy full SHA for 605ed05 - Browse repository at this point
Copy the full SHA 605ed05View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4abf88b - Browse repository at this point
Copy the full SHA 4abf88bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8268027 - Browse repository at this point
Copy the full SHA 8268027View commit details -
adjust profile, translations and fix an issue where webauthn is not w…
…orking when multiple hanko elements are embedded on a single page
Configuration menu - View commit details
-
Copy full SHA for 00a8d84 - Browse repository at this point
Copy the full SHA 00a8d84View commit details -
feat: add thirdparty login to elements (#1468)
* feat: add thirdparty login to elements * chore: remove todo
Configuration menu - View commit details
-
Copy full SHA for ae9aff0 - Browse repository at this point
Copy the full SHA ae9aff0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2a68c27 - Browse repository at this point
Copy the full SHA 2a68c27View commit details -
Configuration menu - View commit details
-
Copy full SHA for 441dcb5 - Browse repository at this point
Copy the full SHA 441dcb5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 239d948 - Browse repository at this point
Copy the full SHA 239d948View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0434a34 - Browse repository at this point
Copy the full SHA 0434a34View commit details -
Configuration menu - View commit details
-
Copy full SHA for f7ab674 - Browse repository at this point
Copy the full SHA f7ab674View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6086ca0 - Browse repository at this point
Copy the full SHA 6086ca0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 019ff31 - Browse repository at this point
Copy the full SHA 019ff31View commit details -
Configuration menu - View commit details
-
Copy full SHA for cf8ee74 - Browse repository at this point
Copy the full SHA cf8ee74View commit details -
Configuration menu - View commit details
-
Copy full SHA for 90dc589 - Browse repository at this point
Copy the full SHA 90dc589View commit details -
Configuration menu - View commit details
-
Copy full SHA for 585438b - Browse repository at this point
Copy the full SHA 585438bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9c6907c - Browse repository at this point
Copy the full SHA 9c6907cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4ce58cb - Browse repository at this point
Copy the full SHA 4ce58cbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 213ba1c - Browse repository at this point
Copy the full SHA 213ba1cView commit details -
Configuration menu - View commit details
-
Copy full SHA for bf59d0c - Browse repository at this point
Copy the full SHA bf59d0cView commit details -
Configuration menu - View commit details
-
Copy full SHA for c9ce355 - Browse repository at this point
Copy the full SHA c9ce355View commit details -
Configuration menu - View commit details
-
Copy full SHA for c182f5e - Browse repository at this point
Copy the full SHA c182f5eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 05fd5ab - Browse repository at this point
Copy the full SHA 05fd5abView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2188eb6 - Browse repository at this point
Copy the full SHA 2188eb6View commit details -
Configuration menu - View commit details
-
Copy full SHA for b48a868 - Browse repository at this point
Copy the full SHA b48a868View commit details -
Configuration menu - View commit details
-
Copy full SHA for c4a60b9 - Browse repository at this point
Copy the full SHA c4a60b9View commit details -
fix: username set action incorrectly updates username
The current user's username is updated with the new provided username before we know whether the it is already used by another user. This commit postpones setting the username until after the approriate check for a duplicate is made.
Configuration menu - View commit details
-
Copy full SHA for 34eb35d - Browse repository at this point
Copy the full SHA 34eb35dView commit details -
Flow api config new and flowpilot updates (#1507)
* rework sub-flow behaviour and introduce after-flow-hooks
Configuration menu - View commit details
-
Copy full SHA for 158b95d - Browse repository at this point
Copy the full SHA 158b95dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8573eac - Browse repository at this point
Copy the full SHA 8573eacView commit details -
Configuration menu - View commit details
-
Copy full SHA for e00db01 - Browse repository at this point
Copy the full SHA e00db01View commit details -
Configuration menu - View commit details
-
Copy full SHA for c64f636 - Browse repository at this point
Copy the full SHA c64f636View commit details -
Configuration menu - View commit details
-
Copy full SHA for 11e704f - Browse repository at this point
Copy the full SHA 11e704fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9d9c8ee - Browse repository at this point
Copy the full SHA 9d9c8eeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9dc7ae7 - Browse repository at this point
Copy the full SHA 9dc7ae7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 11cc4f3 - Browse repository at this point
Copy the full SHA 11cc4f3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9a8cce5 - Browse repository at this point
Copy the full SHA 9a8cce5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 04f93c4 - Browse repository at this point
Copy the full SHA 04f93c4View commit details -
Configuration menu - View commit details
-
Copy full SHA for b48efaa - Browse repository at this point
Copy the full SHA b48efaaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4a5df94 - Browse repository at this point
Copy the full SHA 4a5df94View commit details -
Configuration menu - View commit details
-
Copy full SHA for abf7155 - Browse repository at this point
Copy the full SHA abf7155View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5df80f2 - Browse repository at this point
Copy the full SHA 5df80f2View commit details -
Configuration menu - View commit details
-
Copy full SHA for f050209 - Browse repository at this point
Copy the full SHA f050209View commit details -
Configuration menu - View commit details
-
Copy full SHA for f0e847d - Browse repository at this point
Copy the full SHA f0e847dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6c5a236 - Browse repository at this point
Copy the full SHA 6c5a236View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7aea3de - Browse repository at this point
Copy the full SHA 7aea3deView commit details -
chore: flow-api refactoring, bug fixes and the ability to specify the…
… query param name
Configuration menu - View commit details
-
Copy full SHA for 3c18bc9 - Browse repository at this point
Copy the full SHA 3c18bc9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 29c2c19 - Browse repository at this point
Copy the full SHA 29c2c19View commit details -
Configuration menu - View commit details
-
Copy full SHA for d2f78e9 - Browse repository at this point
Copy the full SHA d2f78e9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 06716e9 - Browse repository at this point
Copy the full SHA 06716e9View commit details -
Configuration menu - View commit details
-
Copy full SHA for f06b639 - Browse repository at this point
Copy the full SHA f06b639View commit details -
Configuration menu - View commit details
-
Copy full SHA for eee201a - Browse repository at this point
Copy the full SHA eee201aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1b603af - Browse repository at this point
Copy the full SHA 1b603afView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6dadc37 - Browse repository at this point
Copy the full SHA 6dadc37View commit details -
Configuration menu - View commit details
-
Copy full SHA for ac37cff - Browse repository at this point
Copy the full SHA ac37cffView commit details -
Revert "refactor: rename response attributes, add json omitempty tags"
This reverts commit 7295a04.
Configuration menu - View commit details
-
Copy full SHA for f041f31 - Browse repository at this point
Copy the full SHA f041f31View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6915579 - Browse repository at this point
Copy the full SHA 6915579View commit details -
chore: adjust profile translations and remove delete email section if…
… deletion is not possible
Configuration menu - View commit details
-
Copy full SHA for e933d0e - Browse repository at this point
Copy the full SHA e933d0eView commit details -
Configuration menu - View commit details
-
Copy full SHA for d59bf28 - Browse repository at this point
Copy the full SHA d59bf28View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5522847 - Browse repository at this point
Copy the full SHA 5522847View commit details -
Configuration menu - View commit details
-
Copy full SHA for 99482d7 - Browse repository at this point
Copy the full SHA 99482d7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 404512b - Browse repository at this point
Copy the full SHA 404512bView commit details -
Configuration menu - View commit details
-
Copy full SHA for d69275f - Browse repository at this point
Copy the full SHA d69275fView commit details -
* feat: add flow api logging * chore: remove log
Configuration menu - View commit details
-
Copy full SHA for 178d33b - Browse repository at this point
Copy the full SHA 178d33bView commit details -
Flow api fix config usage (#1518)
* fix: check email limit in profile * fix: check email length in profile * fix: check passkey limit in profile * fix: set passcode_template when adding an email at login * feat: increase flow TTL * feat: add debug flag to config * feat: add password & token exchange rate limiting * fix: fix password & exchange token rate limiting * fix: check if email already exists check if the email address already exists before storing it in the DB when the user should/must add an email address in a login flow.
Configuration menu - View commit details
-
Copy full SHA for 1c71e24 - Browse repository at this point
Copy the full SHA 1c71e24View commit details -
fix: login with username, without having an email address, while pass…
…words are disabled
Configuration menu - View commit details
-
Copy full SHA for d1b4642 - Browse repository at this point
Copy the full SHA d1b4642View commit details -
Configuration menu - View commit details
-
Copy full SHA for ef71faf - Browse repository at this point
Copy the full SHA ef71fafView commit details -
Configuration menu - View commit details
-
Copy full SHA for f4db04d - Browse repository at this point
Copy the full SHA f4db04dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8d16774 - Browse repository at this point
Copy the full SHA 8d16774View commit details -
Configuration menu - View commit details
-
Copy full SHA for de022ab - Browse repository at this point
Copy the full SHA de022abView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1be18c4 - Browse repository at this point
Copy the full SHA 1be18c4View commit details -
Configuration menu - View commit details
-
Copy full SHA for f184670 - Browse repository at this point
Copy the full SHA f184670View commit details -
Configuration menu - View commit details
-
Copy full SHA for c35ff40 - Browse repository at this point
Copy the full SHA c35ff40View commit details -
Configuration menu - View commit details
-
Copy full SHA for c06fa7a - Browse repository at this point
Copy the full SHA c06fa7aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5e985a8 - Browse repository at this point
Copy the full SHA 5e985a8View commit details -
Configuration menu - View commit details
-
Copy full SHA for a86d3bb - Browse repository at this point
Copy the full SHA a86d3bbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 249839b - Browse repository at this point
Copy the full SHA 249839bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 562ee53 - Browse repository at this point
Copy the full SHA 562ee53View commit details
Commits on Jul 23, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 28da735 - Browse repository at this point
Copy the full SHA 28da735View commit details -
Configuration menu - View commit details
-
Copy full SHA for e0e4cf4 - Browse repository at this point
Copy the full SHA e0e4cf4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 14a5160 - Browse repository at this point
Copy the full SHA 14a5160View commit details -
Configuration menu - View commit details
-
Copy full SHA for 49dab48 - Browse repository at this point
Copy the full SHA 49dab48View commit details -
Configuration menu - View commit details
-
Copy full SHA for e1961b4 - Browse repository at this point
Copy the full SHA e1961b4View commit details -
Configuration menu - View commit details
-
Copy full SHA for f708d25 - Browse repository at this point
Copy the full SHA f708d25View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7e0055a - Browse repository at this point
Copy the full SHA 7e0055aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6f22e84 - Browse repository at this point
Copy the full SHA 6f22e84View commit details -
Configuration menu - View commit details
-
Copy full SHA for 80a8356 - Browse repository at this point
Copy the full SHA 80a8356View commit details -
Configuration menu - View commit details
-
Copy full SHA for 782b9cf - Browse repository at this point
Copy the full SHA 782b9cfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4bc7990 - Browse repository at this point
Copy the full SHA 4bc7990View commit details
Commits on Jul 24, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 88e4bf7 - Browse repository at this point
Copy the full SHA 88e4bf7View commit details
Commits on Jul 25, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e6e2c25 - Browse repository at this point
Copy the full SHA e6e2c25View commit details
Commits on Jul 26, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 24f5e51 - Browse repository at this point
Copy the full SHA 24f5e51View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4ecec0e - Browse repository at this point
Copy the full SHA 4ecec0eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 254ba8c - Browse repository at this point
Copy the full SHA 254ba8cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 468744f - Browse repository at this point
Copy the full SHA 468744fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6a607ab - Browse repository at this point
Copy the full SHA 6a607abView commit details -
Configuration menu - View commit details
-
Copy full SHA for 619ebca - Browse repository at this point
Copy the full SHA 619ebcaView commit details -
Configuration menu - View commit details
-
Copy full SHA for c09f6f6 - Browse repository at this point
Copy the full SHA c09f6f6View commit details
Commits on Jul 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for a6fe3d5 - Browse repository at this point
Copy the full SHA a6fe3d5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 40fca2c - Browse repository at this point
Copy the full SHA 40fca2cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2b45873 - Browse repository at this point
Copy the full SHA 2b45873View commit details -
Configuration menu - View commit details
-
Copy full SHA for 609346c - Browse repository at this point
Copy the full SHA 609346cView commit details
Commits on Jul 30, 2024
-
Merge pull request #1533 from teamhanko/introduce_flowpilot_compress-…
…stash-data Compress stash data
Configuration menu - View commit details
-
Copy full SHA for c117bbf - Browse repository at this point
Copy the full SHA c117bbfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1d004e3 - Browse repository at this point
Copy the full SHA 1d004e3View commit details
Commits on Aug 1, 2024
-
fix: onboarding states generation
This commit fixes the following issues: - Generation of onboarding states on registration does not consider all possible values for the acquire_on_registration configuration option. - Generation of onboarding states on login does not consider WebAuthn availability/capability.
Configuration menu - View commit details
-
Copy full SHA for c86aaa9 - Browse repository at this point
Copy the full SHA c86aaa9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 26a3d48 - Browse repository at this point
Copy the full SHA 26a3d48View commit details -
Configuration menu - View commit details
-
Copy full SHA for da701db - Browse repository at this point
Copy the full SHA da701dbView commit details -
Configuration menu - View commit details
-
Copy full SHA for acf8350 - Browse repository at this point
Copy the full SHA acf8350View commit details -
Configuration menu - View commit details
-
Copy full SHA for b0fb3e1 - Browse repository at this point
Copy the full SHA b0fb3e1View commit details
Commits on Aug 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for fd93beb - Browse repository at this point
Copy the full SHA fd93bebView commit details -
Configuration menu - View commit details
-
Copy full SHA for cabff98 - Browse repository at this point
Copy the full SHA cabff98View commit details -
Configuration menu - View commit details
-
Copy full SHA for d6ab5a5 - Browse repository at this point
Copy the full SHA d6ab5a5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3d863b2 - Browse repository at this point
Copy the full SHA 3d863b2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 67fc062 - Browse repository at this point
Copy the full SHA 67fc062View commit details -
Configuration menu - View commit details
-
Copy full SHA for 19aa912 - Browse repository at this point
Copy the full SHA 19aa912View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8994bd2 - Browse repository at this point
Copy the full SHA 8994bd2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2ab71f5 - Browse repository at this point
Copy the full SHA 2ab71f5View commit details -
fix: apply suggestions from code review
Co-authored-by: Frederic Jahn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for dae8f0b - Browse repository at this point
Copy the full SHA dae8f0bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7627aea - Browse repository at this point
Copy the full SHA 7627aeaView commit details -
Configuration menu - View commit details
-
Copy full SHA for e1aff47 - Browse repository at this point
Copy the full SHA e1aff47View commit details -
Configuration menu - View commit details
-
Copy full SHA for c7f3dc2 - Browse repository at this point
Copy the full SHA c7f3dc2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 60f1f9c - Browse repository at this point
Copy the full SHA 60f1f9cView commit details -
Configuration menu - View commit details
-
Copy full SHA for f5ba1f9 - Browse repository at this point
Copy the full SHA f5ba1f9View commit details
Commits on Aug 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for b32120b - Browse repository at this point
Copy the full SHA b32120bView commit details -
Configuration menu - View commit details
-
Copy full SHA for e93531f - Browse repository at this point
Copy the full SHA e93531fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6239a0d - Browse repository at this point
Copy the full SHA 6239a0dView commit details -
Configuration menu - View commit details
-
Copy full SHA for bea0452 - Browse repository at this point
Copy the full SHA bea0452View commit details -
Configuration menu - View commit details
-
Copy full SHA for a86479d - Browse repository at this point
Copy the full SHA a86479dView commit details -
Change convert_legacy_config default value (#1552)
* chore: change default value of convertLegacyConfig * chore: remove double validation of config parameter * docs: fix docs for convert_legacy_config * chore: use new config options for docker compose
Configuration menu - View commit details
-
Copy full SHA for e21cb29 - Browse repository at this point
Copy the full SHA e21cb29View commit details -
Configuration menu - View commit details
-
Copy full SHA for e929588 - Browse repository at this point
Copy the full SHA e929588View commit details -
Configuration menu - View commit details
-
Copy full SHA for b3478a2 - Browse repository at this point
Copy the full SHA b3478a2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 77d4fa6 - Browse repository at this point
Copy the full SHA 77d4fa6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 08544bc - Browse repository at this point
Copy the full SHA 08544bcView commit details
Commits on Aug 6, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 6bb9b1b - Browse repository at this point
Copy the full SHA 6bb9b1bView commit details -
Configuration menu - View commit details
-
Copy full SHA for fbdfe4b - Browse repository at this point
Copy the full SHA fbdfe4bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 91a8560 - Browse repository at this point
Copy the full SHA 91a8560View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8b14945 - Browse repository at this point
Copy the full SHA 8b14945View commit details -
Configuration menu - View commit details
-
Copy full SHA for 795621f - Browse repository at this point
Copy the full SHA 795621fView commit details