Skip to content
Snippets Groups Projects
Commit 7df6844d authored by Christian Dresen's avatar Christian Dresen
Browse files

[WarpAuth] Fixed minor issues

parent 541944a6
No related branches found
No related tags found
No related merge requests found
......@@ -14,8 +14,8 @@ urlpatterns = [
url(r'^account/registration/activate/(?P<token>\w+)/$', register.activate, name='activate'),
url(r'^account/registration/resend/$', register.resend_token, name='resend_token'),
url(r'^/account/reset_password/$', reset_password.gen_token, name='reset_password'),
url(r'^/account/reset_password/(?P<reset_hash>\w+)/$', reset_password.change_password, name='index'),
url(r'^account/reset_password/$', reset_password.gen_token, name='reset_password'),
url(r'^account/reset_password/(?P<reset_hash>\w+)/$', reset_password.change_password, name='index'),
url(r'^profile/$', profile.index, name='index'),
url(r'^profile/change_password/$', profile.change_password, name='change_password'),
......
......@@ -116,7 +116,7 @@ LOCALE_PATHS = (
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'warpzone.db'
'NAME': '/opt/database/warpzone.db'
},
'ldap': {
'ENGINE': 'ldapdb.backends.ldap',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment