Allow overriding topic

This commit is contained in:
2023-01-12 07:20:48 +00:00
parent 0b840d227b
commit 4f55ffeaf7
6 changed files with 42 additions and 9 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 4.1.5 on 2023-01-12 18:14
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0014_notificationrule_priority'),
]
operations = [
migrations.AddField(
model_name='notificationrule',
name='topic',
field=models.CharField(blank=True, max_length=255, null=True),
),
]