diff options
| author | JoseĢ Padilla | 2014-10-31 09:04:39 -0400 |
|---|---|---|
| committer | Dougal Matthews | 2014-11-25 12:44:11 +0000 |
| commit | 16d442dda3ee9d4ff40d067d76706959aac4c6a3 (patch) | |
| tree | 2f180dd2ba39e9bed2dea0bbadc85815a043b471 /docs/api-guide/throttling.md | |
| parent | cbb6799d2dc2d87e58e67e1044075319262a674b (diff) | |
| download | django-rest-framework-16d442dda3ee9d4ff40d067d76706959aac4c6a3.tar.bz2 | |
Use MkDocs meta.source to render source code links
Diffstat (limited to 'docs/api-guide/throttling.md')
| -rw-r--r-- | docs/api-guide/throttling.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/api-guide/throttling.md b/docs/api-guide/throttling.md index 147c16ff..3f668867 100644 --- a/docs/api-guide/throttling.md +++ b/docs/api-guide/throttling.md @@ -1,4 +1,4 @@ -<a class="github" href="throttling.py"></a> +source: throttling.py # Throttling @@ -83,7 +83,7 @@ The throttle classes provided by REST framework use Django's cache backend. You If you need to use a cache other than `'default'`, you can do so by creating a custom throttle class and setting the `cache` attribute. For example: class CustomAnonRateThrottle(AnonRateThrottle): - cache = get_cache('alternate') + cache = get_cache('alternate') You'll need to remember to also set your custom throttle class in the `'DEFAULT_THROTTLE_CLASSES'` settings key, or using the `throttle_classes` view attribute. @@ -147,15 +147,15 @@ For example, given the following views... class ContactListView(APIView): throttle_scope = 'contacts' ... - + class ContactDetailView(ApiView): throttle_scope = 'contacts' ... - class UploadView(APIView): + class UploadView(APIView): throttle_scope = 'uploads' ... - + ...and the following settings. REST_FRAMEWORK = { |
