diff options
author | Jayaram Pai | 2013-12-05 21:25:35 +0530 |
---|---|---|
committer | Jayaram Pai | 2013-12-05 21:25:35 +0530 |
commit | 41e5496301cd02bff34dad877d20b2dd30349866 (patch) | |
tree | 587de041ff2c6820c7b2a9fc0c4ab87a6c2eb63a /forums | |
parent | e0bbd9f308e03d1d4e5b2f1e668b8958c81c039e (diff) | |
download | FOSSEE-Forum-41e5496301cd02bff34dad877d20b2dd30349866.tar.gz FOSSEE-Forum-41e5496301cd02bff34dad877d20b2dd30349866.tar.bz2 FOSSEE-Forum-41e5496301cd02bff34dad877d20b2dd30349866.zip |
something works :)
Diffstat (limited to 'forums')
-rw-r--r-- | forums/settings.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/forums/settings.py b/forums/settings.py index 6a82a19..dc2bb08 100644 --- a/forums/settings.py +++ b/forums/settings.py @@ -144,6 +144,7 @@ INSTALLED_APPS = ( # 'django.contrib.admindocs', 'website', 'widget_tweaks', + 'drupal_auth', ) # A sample logging configuration. The only tangible logging @@ -175,5 +176,6 @@ LOGGING = { } } -AUTHENTICATION_BACKENDS = ( 'drupal_auth.backend.DrupalAuthBackend', ) -AUTH_USER_MODEL = 'website.Test' +AUTH_USER_MODEL = 'drupal_auth.Users' +AUTHENTICATION_BACKENDS = ( 'drupal_auth.backends.DrupalAuthBackend', ) +DATABASE_ROUTERS = ['drupal_auth.routers.DrupalAuthRouter'] |