aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/metadata.md
diff options
context:
space:
mode:
authorJosé Padilla2015-03-07 10:49:56 -0400
committerJosé Padilla2015-03-07 10:49:56 -0400
commitd12de927adaac6018f3e8c232307b76372fe3527 (patch)
treec3a81d83421e761ef5f55c78f61aa29b3539ef4c /docs/api-guide/metadata.md
parent2ddb6bfa70036bc1182a768807362b4e46a1b67b (diff)
downloaddjango-rest-framework-d12de927adaac6018f3e8c232307b76372fe3527.tar.bz2
Remove docs for 3.0 banners
Diffstat (limited to 'docs/api-guide/metadata.md')
-rw-r--r--docs/api-guide/metadata.md8
1 files changed, 1 insertions, 7 deletions
diff --git a/docs/api-guide/metadata.md b/docs/api-guide/metadata.md
index 247ae988..01727440 100644
--- a/docs/api-guide/metadata.md
+++ b/docs/api-guide/metadata.md
@@ -1,11 +1,5 @@
source: metadata.py
----
-
-**Note**: This is the documentation for the **version 3.0** of REST framework. Documentation for [version 2.4](http://tomchristie.github.io/rest-framework-2-docs/) is also available.
-
----
-
# Metadata
> [The `OPTIONS`] method allows a client to determine the options and/or requirements associated with a resource, or the capabilities of a server, without implying a resource action or initiating a resource retrieval.
@@ -59,7 +53,7 @@ Or you can set the metadata class individually for a view:
class APIRoot(APIView):
metadata_class = APIRootMetadata
-
+
def get(self, request, format=None):
return Response({
...