From a37a8748cc3d104bb85a712930cf405eb7d934a7 Mon Sep 17 00:00:00 2001 From: Ramon Moraes Date: Fri, 15 Jan 2016 11:44:25 -0300 Subject: [PATCH] Update permissions.md Adding additional note about the behavior of set permission classes per view as suggest on #3834 --- docs/api-guide/permissions.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/api-guide/permissions.md b/docs/api-guide/permissions.md index 0f5947d63..bbac824da 100644 --- a/docs/api-guide/permissions.md +++ b/docs/api-guide/permissions.md @@ -100,6 +100,8 @@ Or, if you're using the `@api_view` decorator with function based views. } return Response(content) +__Note:__ when you set new permission classes through class attribute or decorators you're telling the view to ignore the default list set over the __settings.py__ file. + --- # API Reference