mirror of
https://github.com/jazzband/django-axes.git
synced 2026-03-16 22:30:23 +00:00
Merge pull request #25 from jslatts/master
Pull request to increase http accept header length
This commit is contained in:
commit
6eb24795fa
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ class CommonAccess(models.Model):
|
|||
# Once a user logs in from an ip, that combination is trusted and not
|
||||
# locked out in case of a distributed attack
|
||||
trusted = models.BooleanField(default=False)
|
||||
http_accept = models.CharField('HTTP Accept', max_length=255)
|
||||
http_accept = models.CharField('HTTP Accept', max_length=1025)
|
||||
path_info = models.CharField('Path', max_length=255)
|
||||
attempt_time = models.DateTimeField(auto_now_add=True)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue