-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
url(r'^login/$', 'nopassword.views.login', name='login'), | ||
url(r'^login-code/(?P<login_code>[a-zA-Z0-9]+)/$', | ||
'nopassword.views.login_with_code'), | ||
url(r'^login-code/(?P<username>[a-zA-Z0-9_@\.-]+)/(?P<login_code>[a-zA-Z0-9]+)/$', | ||
url(r'^login-code/(?P<username>[a-zA-Z0-9_@\.\+-]+)/(?P<login_code>[a-zA-Z0-9]+)/$', | ||
This comment has been minimized.
Sorry, something went wrong.
dwinston
|
||
'nopassword.views.login_with_code_and_username'), | ||
url(r'^logout/$', 'nopassword.views.logout'), | ||
] |
Doesn't get_current_site() need the request as argument? to fall back to request.get_host() ?