mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
webhooks: Remove use of get_user_profile_by_email.
This function is deprecated.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
# Webhooks for external integrations.
|
||||
from zerver.lib.actions import check_send_private_message
|
||||
from zerver.lib.response import json_success
|
||||
from zerver.models import get_user_profile_by_email
|
||||
from zerver.models import get_user
|
||||
from zerver.decorator import REQ, has_request_variables, api_key_only_webhook_view
|
||||
from zerver.models import UserProfile
|
||||
from django.http import HttpRequest, HttpResponse
|
||||
@@ -17,6 +17,6 @@ def api_yo_app_webhook(request, user_profile, email=REQ(default=""),
|
||||
# type: (HttpRequest, UserProfile, str, str, Optional[str], Optional[str]) -> HttpResponse
|
||||
|
||||
body = ('Yo from %s') % (username,)
|
||||
receiving_user = get_user_profile_by_email(email)
|
||||
receiving_user = get_user(email, user_profile.realm)
|
||||
check_send_private_message(user_profile, request.client, receiving_user, body)
|
||||
return json_success()
|
||||
|
||||
Reference in New Issue
Block a user