Skip to content

Commit f530a99

Browse files
authored
Add Eventyay Stripe plugin (fossasia#496)
* stripe(plugin): add path to pyproject.toml and update Webhook Signing Secret field name * Add pydantic dependency for data validation and parsing
1 parent 55db753 commit f530a99

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ dependencies = [
103103
'django_celery_beat==2.7.0',
104104
'cron-descriptor==1.4.5',
105105
'django-allauth[socialaccount]==65.3.0',
106+
'eventyay-stripe @ git+https://github.com/fossasia/eventyay-tickets-stripe.git@master',
106107
'pydantic==2.10.4'
107108
]
108109

src/pretix/control/forms/global_settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def __init__(self, *args, **kwargs):
143143
self.fields['banner_message_detail'].widget.attrs['rows'] = '3'
144144
self.fields = OrderedDict(list(self.fields.items()) + [
145145
('stripe_webhook_secret_key', SecretKeySettingsField(
146-
label=_('Stripe Webhook: Secret key'),
146+
label=_('Stripe Webhook: Signing secret'),
147147
required=False,
148148
)),
149149
(

0 commit comments

Comments
 (0)