mirror of
https://github.com/pretix/pretix.git
synced 2026-05-20 17:44:02 +00:00
add missing slug fields
This commit is contained in:
@@ -183,6 +183,7 @@ class ParametrizedGiftcardWebhookEvent(ParametrizedWebhookEvent):
|
|||||||
return {
|
return {
|
||||||
'notification_id': logentry.pk,
|
'notification_id': logentry.pk,
|
||||||
'issuer_id': logentry.organizer_id,
|
'issuer_id': logentry.organizer_id,
|
||||||
|
'issuer_slug': logentry.organizer.slug,
|
||||||
'giftcard': giftcard.pk,
|
'giftcard': giftcard.pk,
|
||||||
'action': logentry.action_type,
|
'action': logentry.action_type,
|
||||||
}
|
}
|
||||||
@@ -197,6 +198,7 @@ class ParametrizedGiftcardTransactionWebhookEvent(ParametrizedWebhookEvent):
|
|||||||
return {
|
return {
|
||||||
'notification_id': logentry.pk,
|
'notification_id': logentry.pk,
|
||||||
'issuer_id': logentry.organizer_id,
|
'issuer_id': logentry.organizer_id,
|
||||||
|
'issuer_slug': logentry.organizer.slug,
|
||||||
'acceptor_id': logentry.parsed_data.get('acceptor_id'),
|
'acceptor_id': logentry.parsed_data.get('acceptor_id'),
|
||||||
'acceptor_slug': logentry.parsed_data.get('acceptor_slug'),
|
'acceptor_slug': logentry.parsed_data.get('acceptor_slug'),
|
||||||
'giftcard': giftcard.pk,
|
'giftcard': giftcard.pk,
|
||||||
|
|||||||
Reference in New Issue
Block a user