aboutsummaryrefslogtreecommitdiffstats
path: root/docs/authenticators.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/authenticators.rst')
-rw-r--r--docs/authenticators.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/authenticators.rst b/docs/authenticators.rst
index e8cc9e51..a2d6112e 100644
--- a/docs/authenticators.rst
+++ b/docs/authenticators.rst
@@ -3,7 +3,7 @@
.. module:: authenticators
-The authenticators module provides a standard set of authentication methods that can be plugged in to a :class:`Resource`, as well as providing a template by which to write custom authentication methods.
+The authenticators module provides a standard set of authentication methods that can be plugged in to a :class:`.Resource`, as well as providing a template by which to write custom authentication methods.
The base class
--------------
@@ -18,7 +18,7 @@ All authenticators must subclass the :class:`BaseAuthenticator` class and overri
The default permission checking on :class:`.Resource` will use the allowed_methods attribute for permissions if the authentication context is not None, and use anon_allowed_methods otherwise.
- The authentication context is passed to the method calls (eg :meth:`.Resource.get`, :meth:`.Resource.post` etc...) in order to allow them to apply any more fine grained permission checking at the point the response is being generated.
+ The authentication context is passed to the handler calls (eg :meth:`.Resource.get`, :meth:`.Resource.post` etc...) in order to allow them to apply any more fine grained permission checking at the point the response is being generated.
This function must be overridden to be implemented.