##// END OF EJS Templates
Feed of posts for the specific IP (works only for moderators who can delete posts)
Feed of posts for the specific IP (works only for moderators who can delete posts)

File last commit:

r1136:f6ecb53d default
r1641:d57d7e7e default
Show More
0017_auto_20150503_1847.py
20 lines | 471 B | text/x-python | PythonLexer
/ boards / migrations / 0017_auto_20150503_1847.py
neko259
Fixed thread max posts to not create new migration each time it changes in settings
r1136 # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
import boards.models.thread
class Migration(migrations.Migration):
dependencies = [
('boards', '0016_auto_20150421_1803'),
]
operations = [
migrations.AlterField(
model_name='thread',
name='max_posts',
field=models.IntegerField(default=boards.models.thread.get_thread_max_posts),
),
]