annotate antispam/apps.py @ 964:51a2051588f5

Image uploading now expects a file. Refactor image uploading to not expect a Django UploadedFile and use a regular file instead. This will be needed for the future feature of being able to save and upload images from the Internet.
author Brian Neal <bgneal@gmail.com>
date Wed, 02 Sep 2015 20:50:08 -0500
parents 886234943aed
children
rev   line source
bgneal@918 1 from django.apps import AppConfig
bgneal@918 2 import django.contrib.auth.views
bgneal@918 3
bgneal@918 4 from antispam.decorators import log_auth_failures
bgneal@918 5
bgneal@918 6
bgneal@918 7 class AntiSpamConfig(AppConfig):
bgneal@918 8 name = 'antispam'
bgneal@918 9 verbose_name = 'Anti-Spam'
bgneal@918 10
bgneal@918 11 def ready(self):
bgneal@918 12 import antispam.receivers
bgneal@918 13
bgneal@918 14 # Install rate limiting on auth login
bgneal@918 15 django.contrib.auth.views.login = log_auth_failures('Login')(
bgneal@918 16 django.contrib.auth.views.login)