added setting to disable recent viewed recipes

This commit is contained in:
vabene1111
2020-06-02 10:53:32 +02:00
parent fbe528e935
commit 5706776002
4 changed files with 24 additions and 3 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 3.0.5 on 2020-06-02 08:51
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('cookbook', '0044_viewlog'),
]
operations = [
migrations.AddField(
model_name='userpreference',
name='show_recent',
field=models.BooleanField(default=True),
),
]