aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvolpino <fox91@anche.no>2012-11-02 17:33:00 +0100
committervolpino <fox91@anche.no>2012-11-02 20:15:51 +0100
commitc31076ddb4cc790fc69dde45f89aeaee3cb583ef (patch)
tree53d108c87e39a48a2bd3d7cfcbbe0846ca5dfdc7 /euscanwww/runtests.py
parenteuscanwww: removed useless 'print' (diff)
downloadeuscan-c31076ddb4cc790fc69dde45f89aeaee3cb583ef.tar.gz
euscan-c31076ddb4cc790fc69dde45f89aeaee3cb583ef.tar.bz2
euscan-c31076ddb4cc790fc69dde45f89aeaee3cb583ef.zip
euscanwww: Moving all account related stuff to a separate app
Note: This commit could break things, the userprofile model has been moved so the db layout must change (some alter table commands are needed to don't lose data) Signed-off-by: volpino <fox91@anche.no>
Diffstat (limited to 'euscanwww/runtests.py')
-rw-r--r--euscanwww/runtests.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/euscanwww/runtests.py b/euscanwww/runtests.py
index 417fd1d..b22d209 100644
--- a/euscanwww/runtests.py
+++ b/euscanwww/runtests.py
@@ -16,6 +16,8 @@ settings.configure(
INSTALLED_APPS=[
'euscanwww.euscanwww',
'djeuscan',
+ 'euscan_accounts',
+ 'euscan_captcha',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.admin',
@@ -29,7 +31,7 @@ settings.configure(
USE_TZ=True,
TASKS_CONCURRENTLY=8,
TASKS_SUBTASK_PACKAGES=32,
- AUTH_PROFILE_MODULE="djeuscan.UserProfile",
+ AUTH_PROFILE_MODULE="euscan_accounts.UserProfile",
RECAPTCHA_PUBLIC_KEY="",
RECAPTCHA_PRIVATE_KEY="",
)