amo and person added, amo with fake auth

This commit is contained in:
Piotr Zalewa 2010-02-04 18:19:12 +00:00
Родитель 55d0e0dcb8
Коммит ee8205daa4
1 изменённых файлов: 10 добавлений и 2 удалений

Просмотреть файл

@ -88,8 +88,16 @@ INSTALLED_APPS = (
# TODO: fix grappelli media
'grappelli',
'django.contrib.admin',
# real apps
'flightdeck.base'
# FlightDeck apps
'base', # basic flightdeck things (utils, urls)
'person', # user related stuff (profile etc.)
'amo' # addons.mozilla.org integration (authentication state updates)
)
AUTH_PROFILE_MODULE = 'person.Profile'
AUTHENTICATION_BACKENDS = (
'amo.authentication.AMOAuthentication',
)
# overwrite default settings with the ones from settings_local.py