From 3698d9ea2ef95a6823b1bc98863ba7b49e2b6937 Mon Sep 17 00:00:00 2001 From: Kyle Hornberg Date: Wed, 10 Aug 2016 11:23:10 -0500 Subject: [PATCH] Update permissions.md (#4381) --- docs/api-guide/permissions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-guide/permissions.md b/docs/api-guide/permissions.md index 402875cd5..e0838e94a 100644 --- a/docs/api-guide/permissions.md +++ b/docs/api-guide/permissions.md @@ -132,7 +132,7 @@ This permission is suitable if you want to your API to allow read permissions to ## DjangoModelPermissions -This permission class ties into Django's standard `django.contrib.auth` [model permissions][contribauth]. This permission must only be applied to views that has a `.queryset` property set. Authorization will only be granted if the user *is authenticated* and has the *relevant model permissions* assigned. +This permission class ties into Django's standard `django.contrib.auth` [model permissions][contribauth]. This permission must only be applied to views that have a `.queryset` property set. Authorization will only be granted if the user *is authenticated* and has the *relevant model permissions* assigned. * `POST` requests require the user to have the `add` permission on the model. * `PUT` and `PATCH` requests require the user to have the `change` permission on the model.