diff options
| author | Tom Christie | 2013-01-23 19:03:50 +0000 | 
|---|---|---|
| committer | Tom Christie | 2013-01-23 19:03:55 +0000 | 
| commit | a57c0c5aaecfbeaf900e6740fa60630f073d717b (patch) | |
| tree | f3d1b667124c3b17156602f2354d6a3dc34f742b /docs/tutorial | |
| parent | 4a4fe60e33437a2a77a1614c2ca2c9628067ab9f (diff) | |
| download | django-rest-framework-a57c0c5aaecfbeaf900e6740fa60630f073d717b.tar.bz2 | |
Docs tweak based on user feedback.
Diffstat (limited to 'docs/tutorial')
| -rw-r--r-- | docs/tutorial/4-authentication-and-permissions.md | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/docs/tutorial/4-authentication-and-permissions.md b/docs/tutorial/4-authentication-and-permissions.md index 35aca8c6..f5b4ce55 100644 --- a/docs/tutorial/4-authentication-and-permissions.md +++ b/docs/tutorial/4-authentication-and-permissions.md @@ -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 | 
