We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
allow_blank=True
Probably related to #29 and #30 but mentioning issue so it is tracked.
It would be helpful for situations where a customer genuinely does not have an email address to allow checkout without one.
The Order model does not require an email address but the Checkout serializer does.
Simplest workaround I've come up with for the moment is to submit with an email placeholder and then remove it with a pre_save signal.
pre_save
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Probably related to #29 and #30 but mentioning issue so it is tracked.
It would be helpful for situations where a customer genuinely does not have an email address to allow checkout without one.
The Order model does not require an email address but the Checkout serializer does.
Simplest workaround I've come up with for the moment is to submit with an email placeholder and then remove it with a
pre_save
signal.The text was updated successfully, but these errors were encountered: