##// END OF EJS Templates
Run thread update when connecting to websocket to get missed posts if the...
Run thread update when connecting to websocket to get missed posts if the browser was closed

File last commit:

r798:a4412d93 decentral
r892:6155490b default
Show More
user.py
20 lines | 436 B | text/x-python | PythonLexer
from django.db import models
__author__ = 'neko259'
BAN_REASON_AUTO = 'Auto'
BAN_REASON_MAX_LENGTH = 200
class Ban(models.Model):
class Meta:
app_label = 'boards'
ip = models.GenericIPAddressField()
reason = models.CharField(default=BAN_REASON_AUTO,
max_length=BAN_REASON_MAX_LENGTH)
can_read = models.BooleanField(default=True)
def __str__(self):
return self.ip