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
Long Story Short When adding a collaborator I want to use the email address I normally use to contact him/her
Expected Behavior Adding the collaborator with email name.SURNAME@domain should work (I am used to send email to this address)
Actual behaviour If I add a collaborator with email like name.SURNAME@domain, that doesn't work
Steps to reproduce A user registers with name.surname@domain in the DB. Trying adding him to an organization using name.SURNAME@domain fails
Additional context See #807
The text was updated successfully, but these errors were encountered:
NOTE:
' [email protected]' == '[email protected]'
'[email protected]' != '[email protected]'
from pydantic import EmailStr, validate_email class CaseInsensitiveEmailStr(EmailStr): @classmethod def validate(cls, value: EmailStr) -> EmailStr: _, email = validate_email(value) return email.lower()
Sorry, something went wrong.
pcrespov
matusdrobuliak66
Successfully merging a pull request may close this issue.
Long Story Short
When adding a collaborator I want to use the email address I normally use to contact him/her
Expected Behavior
Adding the collaborator with email name.SURNAME@domain should work (I am used to send email to this address)
Actual behaviour
If I add a collaborator with email like name.SURNAME@domain, that doesn't work
Steps to reproduce
A user registers with name.surname@domain in the DB.
Trying adding him to an organization using name.SURNAME@domain fails
Additional context
See #807
The text was updated successfully, but these errors were encountered: