Adds trailing slash to authenticate endpoint in urls.py to correct weird '/authenticatelogin' path.

This commit is contained in:
Johnny 2018-08-31 23:25:19 +00:00
parent f1f70730fb
commit 0dafd056d3

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.