-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
fix: content libraries permissions [FC-0062] #35953
fix: content libraries permissions [FC-0062] #35953
Conversation
Thanks for the pull request, @rpenido! What's next?Please work through the following steps to get your changes ready for engineering review: 🔘 Get product approvalIf you haven't already, check this list to see if your contribution needs to go through the product review process.
🔘 Provide contextTo help your reviewers and other members of the community understand the purpose and larger context of your changes, feel free to add as much of the following information to the PR description as you can:
🔘 Get a green buildIf one or more checks are failing, continue working on your changes until this is no longer the case and your build turns green. 🔘 Let us know that your PR is ready for review:Who will review my changes?This repository is currently maintained by Where can I find more information?If you'd like to get more details on all aspects of the review process for open source pull requests (OSPRs), check out the following resources:
When can I expect my changes to be merged?Our goal is to get community contributions seen and reviewed as efficiently as possible. However, the amount of time that it takes to review and merge a PR can vary significantly based on factors such as:
💡 As a result it may take up to several weeks or months to complete a review and merge your PR. |
7a446a2
to
82da84c
Compare
Hi @bradenmacdonald and @ormsbee! I had one doubt while manually testing it: This code handles the visibility of the edx-platform/cms/djangoapps/contentstore/views/library.py Lines 55 to 70 in 70b60ff
Just to confirm, are Organization Staff, Course Staff and Course Admin also Also, |
@ormsbee or @jmakowski1123 can correct me if I'm wrong, but I don't think we want any org-specific permissions for now. It will be simply what's described on the ticket:
Yes, we are diverging from library v1 permissions.
Let me look into this a bit more. Ideally for v2 the button should match the new behavior that you've added here. |
No big issues. We can create another attribute to handle the |
@rpenido OK, please do that. |
fbf9885
to
dab715b
Compare
|
This is ready for review @bradenmacdonald! |
cms/djangoapps/contentstore/utils.py
Outdated
@@ -1565,6 +1568,7 @@ def get_library_context(request, request_is_json=False): | |||
'courses': [], | |||
'libraries_enabled': libraries_v1_enabled(), | |||
'show_new_library_button': user_can_view_create_library_button(request.user) and request.user.is_active, | |||
'show_new_library_v2_button': user_can_create_library(request.user) and request.user.is_active, |
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.
Question: Isn't the is_active
check redundant here?
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.
Yes! Good catch!
Removed here: 30c6d06
dab715b
to
91a0a32
Compare
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.
Please squash your commits and add context to your commit message from the PR description. Otherwise, good to merge and create a backport PR into the sumac branch. Thank you!
@rpenido: You'll need to rebase off the latest master to fix the static-assets-check check. |
30c6d06
to
0bd0e6f
Compare
This PR changes the permissions for content libraries so that only people who can create courses should be allowed to create new content libraries.
23edce5
to
ff0d480
Compare
2U Release Notice: This PR has been deployed to the edX staging environment in preparation for a release to production. |
2U Release Notice: This PR has been deployed to the edX production environment. |
1 similar comment
2U Release Notice: This PR has been deployed to the edX production environment. |
Description
This PR changes the permissions for content libraries so that only people who can create courses should be allowed to create new content libraries.
Additional Information
Testing instructions
Private ref: FAL-3987