webhooks: Remove use of get_user_profile_by_email.

This function is deprecated.
This commit is contained in:
Tim Abbott
2017-10-02 15:28:44 -07:00
parent 32bd609361
commit e3c395f247

View File

@@ -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()