Commit b5e1f7b785bc6f208de867c4e3ddd82b4d2ab17d
Exists in
master
and in
39 other branches
Merge branch 'update_puppet' of github.com:colab-community/colab into update_puppet
Showing
2 changed files
with
3 additions
and
2 deletions
Show diff stats
src/colab/custom_settings.py
| ... | ... | @@ -89,6 +89,8 @@ CACHES = { |
| 89 | 89 | DATABASE_ROUTERS = ['colab.routers.TracRouter',] |
| 90 | 90 | |
| 91 | 91 | INSTALLED_APPS = INSTALLED_APPS + ( |
| 92 | + # First app to provide AUTH_USER_MODEL to others | |
| 93 | + 'accounts', | |
| 92 | 94 | |
| 93 | 95 | # Not standard apps |
| 94 | 96 | 'raven.contrib.django.raven_compat', |
| ... | ... | @@ -108,7 +110,6 @@ INSTALLED_APPS = INSTALLED_APPS + ( |
| 108 | 110 | 'api', |
| 109 | 111 | 'rss', |
| 110 | 112 | 'planet', |
| 111 | - 'accounts', | |
| 112 | 113 | 'proxy', |
| 113 | 114 | 'search', |
| 114 | 115 | 'badger', | ... | ... |
src/proxy/urls.py