allow Markov contexts to be hidden from the web

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
This commit is contained in:
2024-11-14 09:47:27 -06:00
parent d0cbc815d1
commit af4746fb90
3 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.0.9 on 2024-11-14 15:44
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('markov', '0009_alter_markovcontext_id_alter_markovstate_id_and_more'),
]
operations = [
migrations.AddField(
model_name='markovcontext',
name='web_enabled',
field=models.BooleanField(default=True),
),
]