mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-10-31 22:19:00 +00:00
d640e4ac96
- new setting to enable user exports defaults to False - add setting to enable and disable user exports - do not allow user exports when using s3 storage - do not serve non-image files from /images/ (requires update to nginx settings) - increase default file upload limit to 100MB to enable user exports to be imported (can be changed in .env)
18 lines
410 B
Python
18 lines
410 B
Python
# Generated by Django 3.2.23 on 2024-01-16 10:28
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("bookwyrm", "0191_merge_20240102_0326"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="sitesettings",
|
|
name="user_exports_enabled",
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|