Files
zulip/zerver/migrations/0331_scheduledmessagenotificationemail.py
Prakhar Pratyush 179d5cb37d mention: Replace 'wildcards' with 'stream_wildcards'.
This prep commit replaces the 'wildcard' keyword in the codebase
with 'stream_wildcard' at some places for better readability, as
we plan to introduce 'topic_wildcards' as a part of the
'@topic mention' project.

Currently, 'wildcards = ["all", "everyone", "stream"]' which is an
alias to mention everyone in the stream, hence better renamed as
'stream_wildcards'.

Eventually, we will have:
'stream_wildcard' as an alias to mention everyone in the stream.
'topic_wildcard' as an alias to mention everyone in the topic.
'wildcard' refers to 'stream_wildcard' and 'topic_wildcard' as a whole.
2023-07-03 22:03:17 -07:00

63 lines
2.2 KiB
Python

# Generated by Django 3.2.5 on 2021-07-09 11:08
import django.db.models.deletion
from django.conf import settings
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("zerver", "0330_linkifier_pattern_validator"),
]
operations = [
migrations.CreateModel(
name="ScheduledMessageNotificationEmail",
fields=[
(
"id",
models.AutoField(
auto_created=True, primary_key=True, serialize=False, verbose_name="ID"
),
),
(
"trigger",
models.TextField(
choices=[
("private_message", "Private message"),
("mentioned", "Mention"),
("stream_wildcard_mentioned", "Stream wildcard mention"),
("stream_email_notify", "Stream notifications enabled"),
("followed_topic_email_notify", "Followed topic notifications enabled"),
(
"stream_wildcard_mentioned_in_followed_topic",
"Stream wildcard mention in followed topic",
),
]
),
),
("scheduled_timestamp", models.DateTimeField(db_index=True)),
(
"mentioned_user_group",
models.ForeignKey(
null=True,
on_delete=django.db.models.deletion.CASCADE,
to="zerver.usergroup",
),
),
(
"message",
models.ForeignKey(
on_delete=django.db.models.deletion.CASCADE, to="zerver.message"
),
),
(
"user_profile",
models.ForeignKey(
on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL
),
),
],
),
]