Do not use sample users by default
authorKostas Papadimitriou <kpap@grnet.gr>
Tue, 15 May 2012 16:19:54 +0000 (19:19 +0300)
committerKostas Papadimitriou <kpap@grnet.gr>
Tue, 15 May 2012 16:19:54 +0000 (19:19 +0300)
snf-pithos-app/Changelog
snf-pithos-app/pithos/api/settings.py

index 1734a5a..caa1c80 100644 (file)
@@ -1,6 +1,10 @@
 Changelog
 =========
 
+dev
+---
+* Do not use sample authentication users by default.
+
 v0.9.6
 ------
 * Backend umask support
index 2631e38..6a6011d 100644 (file)
@@ -16,7 +16,7 @@ sample_users = {
 }
 
 AUTHENTICATION_URL = getattr(settings, 'PITHOS_AUTHENTICATION_URL', 'http://127.0.0.1:8000/im/authenticate')
-AUTHENTICATION_USERS = getattr(settings, 'PITHOS_AUTHENTICATION_USERS', sample_users)
+AUTHENTICATION_USERS = getattr(settings, 'PITHOS_AUTHENTICATION_USERS', {})
 
 COOKIE_NAME = getattr(settings, 'ASTAKOS_COOKIE_NAME', '_pithos2_a')