-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Make speaker email nullable #7469
Conversation
@iamareebjamal i have set email field to allow null but its still showing |
You didn't change schema |
email = fields.Str(allow_none=True) it is already there in schema |
Please paste the request being sent to the server |
Codecov Report
@@ Coverage Diff @@
## development #7469 +/- ##
===============================================
+ Coverage 65.38% 65.44% +0.06%
===============================================
Files 265 265
Lines 13256 13263 +7
===============================================
+ Hits 8667 8680 +13
+ Misses 4589 4583 -6
Continue to review full report at Codecov.
|
|
It should work. Try required=False in schema as well |
ok |
email = fields.Str(allow_none=True, required=False) but Not working again. |
Are you sure you are submitting to local server and not production? |
yes |
OK, please check other issues for now. I'll test this later |
@iamareebjamal what's next here? |
I have fixed it. Pushing soon after writing tests |
@maze-runnar Please test that everything is working |
ok |
@iamareebjamal it's working now. But When I included changes of fossasia/open-event-frontend#5751. It is showing |
Yes, it is due to email being required in custom forms. Fixing |
…ver into speaker-email
Please check now |
it's working correctly. |
related fossasia/open-event-frontend#5751
Fixes fossasia/open-event-frontend#5342
Checklist
development
branch.