Skip to content

Commit 0795fed

Browse files
authored
Merge branch 'development' into paytm-fields
2 parents 507817e + 7b4ba3a commit 0795fed

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

app/api/orders.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,9 @@ def after_create_object(self, order, data, view_kwargs):
211211
for organizer in order.event.organizers:
212212
send_notif_ticket_purchase_organizer(organizer, order.invoice_number, order_url, order.event.name,
213213
order.identifier)
214+
for coorganizer in order.event.coorganizers:
215+
send_notif_ticket_purchase_organizer(coorganizer, order.invoice_number, order_url, order.event.name,
216+
order.identifier)
214217
if order.event.owner:
215218
send_notif_ticket_purchase_organizer(order.event.owner, order.invoice_number, order_url,
216219
order.event.name, order.identifier)

requirements/common.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ gunicorn~=19.9
2525
boto~=2.49
2626
geoip2~=2.9.0
2727
SQLAlchemy-Continuum~=1.3.9
28-
arrow~=0.14.4
28+
arrow~=0.14.5
2929
unicode-slugify~=0.1
3030
bleach~=3.1
3131
stripe~=2.33.2

0 commit comments

Comments
 (0)