aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial/4-authentication-and-permissions.md
diff options
context:
space:
mode:
authorTom Christie2012-10-28 19:37:27 +0000
committerTom Christie2012-10-28 19:37:27 +0000
commitdb635fa6327d8d3ac3b06886c5f459b5c5a5cd04 (patch)
tree4aa670b8e7dc6b6e49662c41cc18bce3a0fc0b21 /docs/tutorial/4-authentication-and-permissions.md
parentfde79376f323708d9f7b80ee830fe63060fb335f (diff)
downloaddjango-rest-framework-db635fa6327d8d3ac3b06886c5f459b5c5a5cd04.tar.bz2
Minor fixes
Diffstat (limited to 'docs/tutorial/4-authentication-and-permissions.md')
-rw-r--r--docs/tutorial/4-authentication-and-permissions.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/tutorial/4-authentication-and-permissions.md b/docs/tutorial/4-authentication-and-permissions.md
index 79436ad4..336d5891 100644
--- a/docs/tutorial/4-authentication-and-permissions.md
+++ b/docs/tutorial/4-authentication-and-permissions.md
@@ -100,6 +100,8 @@ This field is doing something quite interesting. The `source` argument controls
The field we've added is the untyped `Field` class, in contrast to the other typed fields, such as `CharField`, `BooleanField` etc... The untyped `Field` is always read-only, and will be used for serialized representations, but will not be used for updating model instances when they are deserialized.
+**TODO: Explain the SessionAuthentication and BasicAuthentication classes, and demonstrate using HTTP basic authentication with curl requests**
+
## Adding required permissions to views
Now that code snippets are associated with users we want to make sure that only authenticated users are able to create, update and delete code snippets.