|
@@ -166,6 +166,9 @@ INSTALLED_APPS = (
|
|
|
# 'south',
|
|
|
'autocomplete_light', #Automagic autocomplete foreingkey form component
|
|
|
'activelink', #Detect if a link match actual page
|
|
|
+ 'compat',
|
|
|
+ 'hijack',
|
|
|
+
|
|
|
'coin',
|
|
|
'coin.members',
|
|
|
'coin.offers',
|
|
@@ -240,6 +243,15 @@ AUTHENTICATION_BACKENDS = (
|
|
|
|
|
|
TEST_RUNNER = 'django.test.runner.DiscoverRunner'
|
|
|
|
|
|
+# Where admins are redirected to after hijacking a user
|
|
|
+HIJACK_LOGIN_REDIRECT_URL = '/'
|
|
|
+
|
|
|
+# Where admins are redirected to after releasing a user
|
|
|
+HIJACK_LOGOUT_REDIRECT_URL = '/admin/members/member/'
|
|
|
+
|
|
|
+# Needed for link in admin
|
|
|
+HIJACK_ALLOW_GET_REQUESTS = True
|
|
|
+
|
|
|
GRAPHITE_SERVER = "http://localhost"
|
|
|
|
|
|
# Configuration for outgoing emails
|