Skip to content

Commit b6cb45a

Browse files
committed
hotfix: tilda not required birthday field
1 parent 43d9d1f commit b6cb45a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

partner_programs/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def post(self, request, *args, **kwargs):
9393

9494
user = User.objects.create(
9595
**{field_name: data.get(field_name, "") for field_name in user_fields},
96-
birthday=date_to_iso(data.get("birthday", "1900-01-01")),
96+
birthday=date_to_iso(data.get("birthday", "01-01-1900")),
9797
is_active=True, # bypass email verification
9898
onboarding_stage=None, # bypass onboarding
9999
verification_date=timezone.now(), # bypass ClickUp verification

0 commit comments

Comments
 (0)