-
Notifications
You must be signed in to change notification settings - Fork 423
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
Parent attributes with child creation (fixes #803, #101) #828
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
f4f4f6c
Add failing test for parent metadata with child creation (ref #803)
leplatrem 9eb3249
Allow to read parent metadata when child creation is allowed (fixes #…
leplatrem dccdf70
Update docs
leplatrem cc70a16
Bump API version
leplatrem 3dc1746
Modify load tests assumptions
leplatrem 3200c4e
Add failing test for isolation
leplatrem 6614659
Update changelog
leplatrem 1023ed0
Simplify some authorization code
leplatrem b61eee8
Cleaner permissions tree
leplatrem 6679cf8
Additional level of permissions for object attributes
leplatrem 380226f
Improve code and docs of authorization helpers
leplatrem 3cab17c
Allow to list if allowed to create
leplatrem cc5a143
Remove custom root factory for buckets and generalize permissions
leplatrem efe3867
Simplify and clean-up authorization
leplatrem 46c40ef
Merge remote-tracking branch 'origin/master' into 803-parent-metadata…
leplatrem b970c5d
Fix Python3 syntax
leplatrem fd0d788
Merge remote-tracking branch 'origin/master' into 803-parent-metadata…
leplatrem 8e238d4
Parent at one level above in URI path
leplatrem File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you want to add a note about the fact that
GET
ing the list of records will return an empty list (and not a 403) if the user doesn't have the read permission on the collection, and has not created any records yet? (as discussed in the issue #803)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe
test_list_can_be_obtained_if_allowed_to_create
andtest_list_is_denied_if_not_allowed_to_create
cover this (?)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, the tests and the code are there, but how was wondering if you wanted to add a note to the changelog about that?