summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/topics/auth.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/topics/auth.txt b/docs/topics/auth.txt
index e750683705..e5f4bdb444 100644
--- a/docs/topics/auth.txt
+++ b/docs/topics/auth.txt
@@ -1537,6 +1537,11 @@ object the first time a user authenticates::
ADMIN_LOGIN = 'admin'
ADMIN_PASSWORD = 'sha1$4e987$afbcf42e21bd417fb71db8c66b321e9fc33051de'
"""
+
+ supports_object_permissions = False
+ supports_anonymous_user = False
+ supports_inactive_user = False
+
def authenticate(self, username=None, password=None):
login_valid = (settings.ADMIN_LOGIN == username)
pwd_valid = check_password(password, settings.ADMIN_PASSWORD)