Fix user creation for stale sessions of deleted users#75
Merged
sergeychernyshev merged 5 commits intomainfrom Feb 22, 2026
Conversation
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ✅ Deployment successful! View logs |
startup-api | abb8186 | Feb 22 2026, 08:36 PM |
… instead of re-creating user with same ID
…ironment variable
…ll() and add resilience to missing tables
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR fixes an issue where a user was not properly recreated if they started an auth flow while having a stale session cookie pointing to a deleted user ID.
The fix involves verifying if the user has an existing profile in
UserDOeven if auserIdwas found in the session cookie or credential mapping. If the profile is empty (which happens after a user is deleted via the admin API), the user is treated as a new user, ensuring their profile is populated, they are registered in theSystemDOindex, and a new personal account is created.Closes #69
✨ Assisted by AI: Gemini