mirror of
https://github.com/jazzband/django-axes.git
synced 2026-03-16 22:30:23 +00:00
The old architecture used exceptions in the signal handler which prevented transactions from running smoothly and signal handlers from running after Axes handlers. The new architecture changes the request approach to request flagging and moves the exception handling into the middleware call method. This allows users to more flexibly run their own signal handlers and optionally use the Axes middleware if they want to do so. Fixes #440 Fixes #442
18 lines
406 B
ReStructuredText
18 lines
406 B
ReStructuredText
.. _reference:
|
|
|
|
API reference
|
|
=============
|
|
|
|
Axes offers extensible APIs that you can customize to your liking.
|
|
You can specialize the following base classes or alternatively use
|
|
third party modules as long as they implement the following APIs.
|
|
|
|
.. automodule:: axes.handlers.base
|
|
:members:
|
|
|
|
.. automodule:: axes.backends
|
|
:members:
|
|
:show-inheritance:
|
|
|
|
.. automodule:: axes.middleware
|
|
:members:
|