From 95a7dc5e927eb94c9321fb01ec75e1c3078ad54e Mon Sep 17 00:00:00 2001 From: Jason Ward Date: Wed, 26 Sep 2012 17:44:01 -0400 Subject: [PATCH] refs #9: added a line in the docs showing how to disable the use of the smart cache --- docs/configuration.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/configuration.txt b/docs/configuration.txt index bcf734a..c0aa19f 100644 --- a/docs/configuration.txt +++ b/docs/configuration.txt @@ -32,6 +32,11 @@ context processors:: 'django.core.context_processors.request', ) +django-authority defaults to using a smart cache when checking permissions. +This can be disabled by adding the following line to ``settings.py``:: + + AUTHORITY_USE_SMART_CACHE = False + urls.py =======