Fix MixedContentTypeError in add_inbox_tags handler

The fact that Tags were fetched while the `view_documenttype` permission
was validated caused a MixedContentTypeError, thus the document
consumptio to fail because the list of available tags could not be
fetched.
This commit is contained in:
Moritz 'e1mo' Fromm 2023-04-27 18:00:30 +02:00
parent d3e14818df
commit 2674d4f034
No known key found for this signature in database
GPG Key ID: 1D5D79A439E787F1

View File

@ -37,7 +37,7 @@ def add_inbox_tags(sender, document=None, logging_group=None, **kwargs):
if document.owner is not None: if document.owner is not None:
tags = get_objects_for_user_owner_aware( tags = get_objects_for_user_owner_aware(
document.owner, document.owner,
"documents.view_documenttype", "documents.view_tag",
Tag, Tag,
) )
else: else: