Add possiblity to share gallerie with public link
All checks were successful
Docker / build (release) Successful in 8s
All checks were successful
Docker / build (release) Successful in 8s
This commit is contained in:
parent
ed28d4a9c4
commit
2a409b54f7
12 changed files with 206 additions and 48 deletions
|
|
@ -0,0 +1,22 @@
|
|||
# Generated by Django 5.2.13 on 2026-04-20 19:54
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('photologue', '0008_regen_thumbnails'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='photo',
|
||||
options={'get_latest_by': 'date_added', 'ordering': ['title'], 'verbose_name': 'photo', 'verbose_name_plural': 'photos'},
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='gallery',
|
||||
name='public_token',
|
||||
field=models.UUIDField(blank=True, default=None, null=True, unique=True, verbose_name='public token'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue