Commit fbf13657d6fa5514ee072779a2b5577cda67ed59
1 parent
64763041
Exists in
master
and in
21 other branches
Removed old settings and fixed login/logout URLs
Signed-off-by: Sergio Oliveira <sergio@tracy.com.br>
Showing
1 changed file
with
2 additions
and
4 deletions
Show diff stats
colab/settings.py
| ... | ... | @@ -241,10 +241,8 @@ SUPER_ARCHIVES_LOCK_FILE = '/var/lock/colab/import_emails.lock' |
| 241 | 241 | # Mailman API settings |
| 242 | 242 | MAILMAN_API_URL = 'http://localhost:8124/v2/' |
| 243 | 243 | |
| 244 | -LOGIN_URL = '/user/login' | |
| 245 | -LOGIN_REDIRECT_URL = '/' | |
| 246 | -LOGIN_REDIRECT_URL_FAILURE = '/?bid_login_failed=true' | |
| 247 | -LOGOUT_REDIRECT_URL = '/' | |
| 244 | +LOGIN_URL = '/account/login' | |
| 245 | +LOGOUT_URL = '/account/logout' | |
| 248 | 246 | |
| 249 | 247 | REVPROXY_ADD_REMOTE_USER = True |
| 250 | 248 | ... | ... |