Adds separate privacy policy section

This commit is contained in:
Mouse Reeve
2021-02-27 11:53:36 -08:00
parent 0ecfff0f16
commit 7622bef35d
7 changed files with 120 additions and 57 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 3.0.7 on 2021-02-27 19:12
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('bookwyrm', '0045_auto_20210210_2114'),
]
operations = [
migrations.AddField(
model_name='sitesettings',
name='privacy_policy',
field=models.TextField(default='Add a privacy policy here.'),
),
]