Merge pull request #1655 from strikaco/urlfix

Adds trailing slash to authenticate endpoint in urls.py to correct we…
This commit is contained in:
Griatch 2018-09-17 22:18:02 +02:00 committed by GitHub
commit bde8281c1e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.