From 22e8357a4b91f64eec30b9c3c536127f5736f01d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Stiasny?= Date: Wed, 8 Apr 2015 13:53:49 +0200 Subject: [PATCH] Update serializers documentation (removed feature) It seems that allow_add_remove was removed from 3.x, yet the docs still mention it. Updating to avoid confusion. --- docs/api-guide/serializers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-guide/serializers.md b/docs/api-guide/serializers.md index 2adea513f..2f13bd2a4 100644 --- a/docs/api-guide/serializers.md +++ b/docs/api-guide/serializers.md @@ -478,7 +478,7 @@ The default `ModelSerializer` uses primary keys for relationships, but you can a The `depth` option should be set to an integer value that indicates the depth of relationships that should be traversed before reverting to a flat representation. -If you want to customize the way the serialization is done (e.g. using `allow_add_remove`) you'll need to define the field yourself. +If you want to customize the way the serialization is done you'll need to define the field yourself. ## Specifying fields explicitly