mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-22 11:23:02 +00:00
814401be2e
* Implement favicon loader * Implement load favicon task * Show favicons in bookmark list * Add missing migration * Load missing favicons on import * Automatically refresh favicons * Add enable favicon setting * Update uwsgi config to host favicons * Improve settings wording * Fix favicon loader test setup * Document LD_FAVICON_PROVIDER setting * Add refresh favicons button
18 lines
404 B
Python
18 lines
404 B
Python
# Generated by Django 4.1 on 2023-01-09 21:16
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('bookmarks', '0018_bookmark_favicon_file'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='userprofile',
|
|
name='enable_favicons',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|