Files
zulip/zerver/views/typing.py
Tim Abbott fcac3a4342 recipients: Rename extract_recipients to extract_private_recipients.
Recent changes mean this function is now only used for private
messages.
2020-02-11 12:28:14 -08:00

19 lines
754 B
Python

from django.http import HttpRequest, HttpResponse
from typing import List, Union
from zerver.decorator import has_request_variables, REQ
from zerver.lib.actions import check_send_typing_notification, \
extract_private_recipients
from zerver.lib.response import json_success
from zerver.models import UserProfile
@has_request_variables
def send_notification_backend(
request: HttpRequest, user_profile: UserProfile,
operator: str=REQ('op'),
notification_to: Union[List[str], List[int]]=REQ(
'to', type=Union[List[str], List[int]],
converter=extract_private_recipients, default=[])) -> HttpResponse:
check_send_typing_notification(user_profile, notification_to, operator)
return json_success()