mirror of
https://github.com/evennia/evennia.git
synced 2026-03-30 04:27:16 +02:00
Adds trailing slash to authenticate endpoint in urls.py to correct weird '/authenticatelogin' path.
This commit is contained in:
parent
f1f70730fb
commit
0dafd056d3
1 changed files with 1 additions and 1 deletions
|
|
@ -18,7 +18,7 @@ urlpatterns = [
|
|||
url(r'^tbi/', website_views.to_be_implemented, name='to_be_implemented'),
|
||||
|
||||
# User Authentication (makes login/logout url names available)
|
||||
url(r'^authenticate', include('django.contrib.auth.urls')),
|
||||
url(r'^authenticate/', include('django.contrib.auth.urls')),
|
||||
|
||||
# Django original admin page. Make this URL is always available, whether
|
||||
# we've chosen to use Evennia's custom admin or not.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue