-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1116 from breatheco-de/main
sync back to dev
- Loading branch information
Showing
9 changed files
with
79 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Generated by Django 3.2.21 on 2023-10-09 22:40 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('events', '0054_alter_event_uuid'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='eventcheckin', | ||
name='utm_campaign', | ||
field=models.CharField(blank=True, default=None, max_length=70, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='eventcheckin', | ||
name='utm_medium', | ||
field=models.CharField(blank=True, default=None, max_length=70, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='eventcheckin', | ||
name='utm_source', | ||
field=models.CharField(blank=True, default=None, max_length=70, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='eventcheckin', | ||
name='utm_url', | ||
field=models.CharField(blank=True, default=None, max_length=2000, null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -219,6 +219,10 @@ def test_eventbrite_webhook_without_active_campaign_academy(self): | |
'email': '[email protected]', | ||
'event_id': 1, | ||
'id': 1, | ||
'utm_campaign': None, | ||
'utm_medium': None, | ||
'utm_source': None, | ||
'utm_url': None, | ||
'status': 'PENDING', | ||
'attended_at': None | ||
}]) | ||
|
@@ -263,6 +267,10 @@ def test_eventbrite_webhook_without_automation(self): | |
self.assertEqual(self.all_event_checkin_dict(), [{ | ||
'attendee_id': None, | ||
'email': '[email protected]', | ||
'utm_campaign': None, | ||
'utm_medium': None, | ||
'utm_source': None, | ||
'utm_url': None, | ||
'event_id': 1, | ||
'id': 1, | ||
'status': 'PENDING', | ||
|
@@ -321,6 +329,10 @@ def test_eventbrite_webhook_without_lang(self): | |
|
||
self.assertEqual(self.all_event_checkin_dict(), [{ | ||
'attendee_id': 1, | ||
'utm_campaign': None, | ||
'utm_medium': None, | ||
'utm_source': None, | ||
'utm_url': None, | ||
'email': '[email protected]', | ||
'event_id': 1, | ||
'id': 1, | ||
|
@@ -417,6 +429,10 @@ def test_eventbrite_webhook_without_lang__active_campaign_belong_to_other_academ | |
|
||
self.assertEqual(self.all_event_checkin_dict(), [{ | ||
'attendee_id': 1, | ||
'utm_campaign': None, | ||
'utm_medium': None, | ||
'utm_source': None, | ||
'utm_url': None, | ||
'email': '[email protected]', | ||
'event_id': 1, | ||
'id': 1, | ||
|
@@ -514,6 +530,10 @@ def test_eventbrite_webhook(self): | |
|
||
self.assertEqual(self.all_event_checkin_dict(), [{ | ||
'attendee_id': 1, | ||
'utm_campaign': None, | ||
'utm_medium': None, | ||
'utm_source': None, | ||
'utm_url': None, | ||
'email': '[email protected]', | ||
'event_id': 1, | ||
'id': 1, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters