Implement Manticore fully and re-theme

This commit is contained in:
2026-03-11 02:19:08 +00:00
parent da044be68c
commit cbedcd67f6
46 changed files with 3444 additions and 944 deletions

View File

@@ -0,0 +1,33 @@
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("core", "0046_externalchatlink_provider_default_mock"),
]
operations = [
migrations.AlterField(
model_name="conversationevent",
name="event_type",
field=models.CharField(
choices=[
("message_created", "Message Created"),
("message_edited", "Message Edited"),
("message_deleted", "Message Deleted"),
("reaction_added", "Reaction Added"),
("reaction_removed", "Reaction Removed"),
("read_receipt", "Read Receipt"),
("typing_started", "Typing Started"),
("typing_stopped", "Typing Stopped"),
("composing_abandoned", "Composing Abandoned"),
("presence_available", "Presence Available"),
("presence_unavailable", "Presence Unavailable"),
("participant_added", "Participant Added"),
("participant_removed", "Participant Removed"),
("delivery_receipt", "Delivery Receipt"),
],
max_length=64,
),
),
]

View File

@@ -0,0 +1,16 @@
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("core", "0047_conversationevent_behavioral_event_types"),
]
operations = [
migrations.DeleteModel(
name="ContactAvailabilitySpan",
),
migrations.DeleteModel(
name="ContactAvailabilityEvent",
),
]