mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-22 19:33:05 +00:00
43115fd8f2
* Add basic bookmark notes * Add bookmark list JS to shared bookmarks page * Allow testing through ngrok * Improve CSS * Set notes through API * Improve notes editing * Improve notes icon * Remove transitions for now * Update keyboard shortcut * Add bookmark list tests * Add setting for showing notes permanently * Add test for toggling notes * Update API docs * Allow searching for notes content * Skip test
18 lines
389 B
Python
18 lines
389 B
Python
# Generated by Django 4.1.7 on 2023-05-19 10:52
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('bookmarks', '0021_userprofile_display_url'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='bookmark',
|
|
name='notes',
|
|
field=models.TextField(blank=True),
|
|
),
|
|
]
|