Changeset dbb39a2
- Timestamp:
- Apr 20, 2010, 5:25:52 PM (15 years ago)
- Branches:
- master, client
- Children:
- 734ef4f
- Parents:
- 82211ea
- git-author:
- Alex Dehnert <adehnert@…> (04/20/10 17:25:52)
- git-committer:
- Alex Dehnert <adehnert@…> (04/20/10 17:25:52)
- Location:
- remit
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
remit/settings.py
r6f24604 rdbb39a2 29 29 30 30 BASE_COMMITTEE_PATH = ['Accounts', 'Assets', ] 31 32 AUTH_SOCK = None # Path to SocketAuth socket 31 33 32 34 from local_settings import * … … 83 85 ) 84 86 85 AUTHENTICATION_BACKENDS = (87 AUTHENTICATION_BACKENDS = [ 86 88 'mit.ScriptsRemoteUserBackend', 87 89 'django.contrib.auth.backends.ModelBackend', 88 ) 90 ] 91 if AUTH_SOCK: 92 AUTHENTICATION_BACKENDS.insert(1, 'util.SocketAuth.SocketAuthBackend') 89 93 90 94 ROOT_URLCONF = 'remit.urls'
Note: See TracChangeset
for help on using the changeset viewer.