Add filter

This commit is contained in:
2025-05-09 21:01:22 +00:00
parent f5c6b535d8
commit f0c4b350a9
9 changed files with 205 additions and 805 deletions

View File

@@ -0,0 +1,23 @@
# Generated by Django 5.1.6 on 2025-03-13 21:07
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0014_queuedmessage'),
]
operations = [
migrations.AddField(
model_name='manipulation',
name='filter_enabled',
field=models.BooleanField(default=False),
),
migrations.AlterField(
model_name='manipulation',
name='mode',
field=models.CharField(blank=True, choices=[('active', 'Send replies to messages'), ('instant', 'Click link to send reply'), ('prospective', 'Click link to open page'), ('notify', 'Send notification of ideal reply only'), ('mutate', 'Change messages sent on XMPP using the persona'), ('silent', 'Do not generate or send replies')], max_length=50, null=True),
),
]