Display true note name next to the alias, whenever the user has low permissions

This commit is contained in:
Yohann D'ANELLO 2020-07-30 16:48:34 +02:00
parent 9da8d49223
commit a5e50e5de6
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ class ConsumerSerializer(serializers.ModelSerializer):
# If the user has no right to see the note, then we only display the note identifier
if PermissionBackend.check_perm(get_current_authenticated_user(), "note.view_note", obj.note):
return NotePolymorphicSerializer().to_representation(obj.note)
return dict(id=obj.note.id)
return dict(id=obj.note.id, name=str(obj.note))
def get_email_confirmed(self, obj):
if isinstance(obj.note, NoteUser):