Feat/collection sharing backend#154
Open
INagaty wants to merge 9 commits into
Open
Conversation
…CalibtOS/CalibtOS-Dash into feat/collection-sharing-backend
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.
PR request for the feature of collection sharing for backend changes only
This pull request introduces support for sharing collections with other users, including view and edit roles, and adds comprehensive integration tests for collection sharing. It also adds the new
CollectionSharemodel to the Prisma schema and migration files, updates relationships in existing models, and makes minor code formatting improvements.Collection Sharing Feature:
CollectionSharemodel and corresponding database migration to support sharing collections with users, including fields forrole,createdByUserId, and unique constraints. [1] [2]UserandCollectionmodels to include relations toCollectionShare, enabling tracking of shares for both collections and users. [1] [2]Integration Tests:
collection-sharing.integration.ts) to verify collection sharing, access control for view/edit roles, revocation of access, and behavior when collections are deleted.Schema and Code Cleanups:
sharing.tsfor readability, including consistent parameter formatting and line breaks. [1] [2] [3] [4]