maps issuer_id of giftcard to organizer_id for logging

This commit is contained in:
Lukas Bockstaller
2026-01-22 11:33:42 +01:00
parent 77d8a587fe
commit 98a54c6d21
+2
View File
@@ -130,6 +130,8 @@ class LoggingMixin:
organizer_id = self.event.organizer_id
elif hasattr(self, 'organizer_id'):
organizer_id = self.organizer_id
elif hasattr(self, 'issuer_id'):
organizer_id = self.issuer_id
if user and not user.is_authenticated:
user = None