Merged
Conversation
Rafetikus
approved these changes
Mar 24, 2026
nazarli-shabnam
approved these changes
Mar 24, 2026
|
The preview deployment for Loomy UI failed. 🔴 Open Build Logs | Open Application Logs Last updated at: 2026-03-24 15:40:38 CET |
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 pull request introduces a comprehensive workspace invitation system, allowing workspace owners to invite users by email and manage invitations. It includes database schema changes, new API endpoints, and OAuth improvements to support invitation tokens during authentication flows.
Key changes:
Workspace Invitation Feature
WorkspaceInvitationmodel, including fields for email, role, token, inviter, expiration, and acceptance tracking, with relationships toWorkspaceandUser. (api/app/app/modules/workspaces/model.py)workspace_invitationstable, with appropriate indexes and foreign keys. (api/app/alembic/versions/7d6ba2fe0af9_feat_add_workspace_invitations_table.py)WorkspaceInvitationfor metadata. (api/app/alembic/env.py)API Endpoints for Invitations
api/app/app/modules/workspaces/invitations.py,api/app/app/modules/workspaces/router.py) [1] [2]api/app/app/modules/workspaces/schemas.py)Repository and Service Layer Support
api/app/app/modules/workspaces/repository.py)api/app/app/modules/workspaces/service.py)OAuth Flow Enhancements
invite_token, storing it in Redis and appending it to the frontend callback URL if present. (api/app/app/core/redis.py,api/app/app/modules/auth/router.py) [1] [2] [3] [4] [5] [6]Miscellaneous
0.1.0inpyproject.tomlto reflect these new features. (api/app/pyproject.toml)Closes #11