SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 76e4afbe authored by George Katsikas's avatar George Katsikas :goat:
Browse files

use manager in notes list to handle visibility

parent d53d7e88
No related branches found
No related tags found
No related merge requests found
...@@ -69,10 +69,8 @@ def _hx_notes_list(request, regarding_content_type, regarding_object_id): ...@@ -69,10 +69,8 @@ def _hx_notes_list(request, regarding_content_type, regarding_object_id):
# Handle permission checks for viewing and creating notes # Handle permission checks for viewing and creating notes
can_create_notes = request.user.has_perm("pins.can_add_notes") can_create_notes = request.user.has_perm("pins.can_add_notes")
# Filter non-author users from viewing private notes # Filter according to the visibility of the notes
notes = notes.exclude( notes = notes.visible_to(request.user, object)
Q(visibility=Note.VISIBILITY_PRIVATE) & ~Q(author=request.user.contributor)
)
# Filter out internal notes unless the user has the default "manager" # Filter out internal notes unless the user has the default "manager"
# permission for the given object, e.g. "can_manage_subsidies" # permission for the given object, e.g. "can_manage_subsidies"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment