Add filter
This commit is contained in:
@@ -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),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user