-
Notifications
You must be signed in to change notification settings - Fork 81
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
Resolver for URLs with usernames do not include all valid characters #439
Comments
This affects the following URLs: Website: API: |
Three possible solutions here:
|
Number 2 seems to be the simplest to implement. I think |
Both |
Fix #439: characters in usernames in URLs
URLs that contain usernames use the following regex to capture the username:
[-\w]+
. This does not match the actual allowed characters for Django usernames found in django.contrib.auth.validators:[\w.@+-]+
.This results in website errors when usernames containing periods, at signs, or plus signs.
The text was updated successfully, but these errors were encountered: