##// END OF EJS Templates
Refactored post and thread models
Refactored post and thread models

File last commit:

r728:a5c2ce32 2.0-dev
r1091:4006b8dc default
Show More
enforce_privacy.py
15 lines | 373 B | text/x-python | PythonLexer
neko259
Added command to remove user and poster ip from all posts
r727 from django.core.management import BaseCommand
from django.db import transaction
from boards.models import Post
from boards.models.post import NO_IP
__author__ = 'neko259'
class Command(BaseCommand):
help = 'Removes user and IP data from all posts'
@transaction.atomic
def handle(self, *args, **options):
neko259
Removed user and settings mode. Added settings manager to manage settings and keep them in the session (or any other backend like cookie in the future
r728 Post.objects.all().update(poster_ip=NO_IP)