Mercurial > public > sg101
view antispam/apps.py @ 1224:d7c7a4777dd7 modernize tip
Add unit tests for contests template tags.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 10 Mar 2025 20:28:14 -0500 |
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)