We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23780b9 commit 07a4fa6Copy full SHA for 07a4fa6
readthedocs/urls.py
@@ -17,6 +17,10 @@
17
handler403 = ErrorView.as_view(status_code=403)
18
handler404 = ErrorView.as_view(status_code=404)
19
handler500 = ErrorView.as_view(status_code=500)
20
+# Rate limit handler for allauth views,
21
+# this isn't a Django built-in handler.
22
+# https://docs.allauth.org/en/latest/account/rate_limits.html.
23
+handler429 = ErrorView.as_view(status_code=429)
24
25
basic_urls = [
26
path("", HomepageView.as_view(), name="homepage"),
0 commit comments