mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-22 11:23:02 +00:00
13ff9ac4f8
* Allow marking bookmarks as unread * Restructure navigation to include preset filters * Add mark as read action * Improve description * Highlight unread bookmarks visually * Mark bookmarks as read by default * Add tests * Implement toread flag in importer * Implement admin actions * Add query tests * Remove untagged link * Update api docs * Reduce height of description textarea Co-authored-by: Sascha Ißbrücker <sascha.issbruecker@gmail.com>
27 lines
626 B
Python
27 lines
626 B
Python
# Generated by Django 3.2.13 on 2022-07-23 12:30
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
def forwards(apps, schema_editor):
|
|
Bookmark = apps.get_model('bookmarks', 'Bookmark')
|
|
Bookmark.objects.update(unread=False)
|
|
|
|
|
|
def reverse(apps, schema_editor):
|
|
pass
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('bookmarks', '0013_web_archive_optin_toast'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='bookmark',
|
|
name='unread',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
migrations.RunPython(forwards, reverse),
|
|
]
|