Mercurial > public > sg101
view antispam/apps.py @ 1209:d8bb9c36aae1 modernize tip
Add unit test for accounts task.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 30 Jan 2025 18:46:03 -0600 |
parents | 02181fa5ac9d |
children |
line wrap: on
line source
from django.apps import AppConfig class AntiSpamConfig(AppConfig): name = 'antispam' verbose_name = 'Anti-Spam' def ready(self): import antispam.receivers from antispam.decorators import log_auth_failures import django.contrib.auth.views # Install rate limiting on auth login django.contrib.auth.views.login = log_auth_failures('Login')( django.contrib.auth.views.login)