api: Delete ancient fetch_google_client_id endpoint.

This was used by the old native Zulip Android app
(zulip/zulip-android).  That app has been undeveloped for enough years
that we believe it no longer functions; as a result, there's no reason
to keep a prototype API endpoint for it (that we believe never worked).
This commit is contained in:
Tim Abbott
2021-04-07 21:23:51 -07:00
committed by Tim Abbott
parent fdf44f19b2
commit 1470dd9105
6 changed files with 2 additions and 41 deletions

View File

@@ -24,7 +24,6 @@ from zerver.views.auth import (
api_dev_fetch_api_key,
api_dev_list_users,
api_fetch_api_key,
api_fetch_google_client_id,
api_get_server_settings,
dev_direct_login,
json_fetch_api_key,
@@ -723,8 +722,6 @@ v1_api_mobile_patterns = [
path("dev_fetch_api_key", api_dev_fetch_api_key),
# This is for fetching the emails of the admins and the users.
path("dev_list_users", api_dev_list_users),
# Used to present the GOOGLE_CLIENT_ID to mobile apps
path("fetch_google_client_id", api_fetch_google_client_id),
]
urls += [
path("api/v1/", include(v1_api_mobile_patterns)),