Allow the use of local copies of cdn files

This commit is contained in:
2023-01-04 14:49:00 +01:00
parent 68a18fcf58
commit 3860ed70fd
6 changed files with 35 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 4.1.5 on 2023-01-03 15:01
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("portal", "0014_siteconfiguration_extra_head"),
]
operations = [
migrations.AddField(
model_name="siteconfiguration",
name="use_cdn",
field=models.BooleanField(default=True),
),
]