mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-12 23:07:06 +00:00
c929e8f11c
* use client-side navigation * update tests * add setting for enabling link prefetching * do not prefetch bookmark details * theme progress bar * cleanup behaviors * update test
18 lines
426 B
Python
18 lines
426 B
Python
# Generated by Django 5.0.8 on 2024-09-14 07:48
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("bookmarks", "0038_globalsettings_guest_profile_user"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="globalsettings",
|
|
name="enable_link_prefetch",
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|