mirror of
https://github.com/zulip/zulip.git
synced 2025-11-16 20:02:15 +00:00
scheduled-messages: Simplify message_to type in check_schedule_message.
As of commit 38f6807af1, we accept only stream and user IDs for
the recipient information for scheduled messages, which means we
can simplify the type for `message_to` in `check_schedule_message`.
This commit is contained in:
committed by
Tim Abbott
parent
1ad0ad8ece
commit
a2a50e1408
@@ -1,6 +1,6 @@
|
|||||||
import datetime
|
import datetime
|
||||||
import logging
|
import logging
|
||||||
from typing import List, Optional, Sequence, Tuple, Union
|
from typing import List, Optional, Sequence, Tuple
|
||||||
|
|
||||||
import orjson
|
import orjson
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
@@ -61,7 +61,7 @@ def check_schedule_message(
|
|||||||
sender: UserProfile,
|
sender: UserProfile,
|
||||||
client: Client,
|
client: Client,
|
||||||
recipient_type_name: str,
|
recipient_type_name: str,
|
||||||
message_to: Union[Sequence[str], Sequence[int]],
|
message_to: List[int],
|
||||||
topic_name: Optional[str],
|
topic_name: Optional[str],
|
||||||
message_content: str,
|
message_content: str,
|
||||||
scheduled_message_id: Optional[int],
|
scheduled_message_id: Optional[int],
|
||||||
|
|||||||
Reference in New Issue
Block a user