Docs tweak based on user feedback.

This commit is contained in:
Tom Christie 2013-01-23 19:03:50 +00:00
parent 4a4fe60e33
commit a57c0c5aae

View File

@ -166,7 +166,8 @@ In the snippets app, create a new file, `permissions.py`
if obj is None:
return True
# Read permissions are allowed to any request
# Read permissions are allowed to any request,
# so we'll always allow GET, HEAD or OPTIONS requests.
if request.method in permissions.SAFE_METHODS:
return True