We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43d9d1f commit b6cb45aCopy full SHA for b6cb45a
1 file changed
partner_programs/views.py
@@ -93,7 +93,7 @@ def post(self, request, *args, **kwargs):
93
94
user = User.objects.create(
95
**{field_name: data.get(field_name, "") for field_name in user_fields},
96
- birthday=date_to_iso(data.get("birthday", "1900-01-01")),
+ birthday=date_to_iso(data.get("birthday", "01-01-1900")),
97
is_active=True, # bypass email verification
98
onboarding_stage=None, # bypass onboarding
99
verification_date=timezone.now(), # bypass ClickUp verification
0 commit comments