Implement Manticore fully and re-theme
This commit is contained in:
@@ -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,
|
||||
),
|
||||
),
|
||||
]
|
||||
@@ -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",
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user