mirror of
https://github.com/jazzband/django-axes.git
synced 2026-05-09 16:14:46 +00:00
Implements a proxied API which enables overriding a handler backend with a user supplied implementation. Fixes #399 Signed-off-by: Aleksi Häkli <aleksi.hakli@iki.fi>
9 lines
174 B
Python
9 lines
174 B
Python
from django import apps
|
|
|
|
|
|
class AppConfig(apps.AppConfig):
|
|
name = 'axes'
|
|
|
|
def ready(self):
|
|
from axes import signals
|
|
signals.ProxyHandler.initialize()
|