feat: Implement per-case query and messaging functionality with UI updates and tests

This commit is contained in:
Ross
2026-04-27 22:28:45 +01:00
parent 70ea3788ca
commit 02ad8c61e5
11 changed files with 390 additions and 138 deletions
@@ -0,0 +1,18 @@
# Generated by Django 5.2.7 on 2026-04-27 21:21
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('atlas', '0097_casereviewmessage'),
]
operations = [
migrations.AddField(
model_name='casecollection',
name='case_query_messaging_enabled',
field=models.BooleanField(default=True, help_text='Enable per-case query and messaging for this collection.'),
),
]