zilencer: Rename registration takeover to registration transfer.

This is the final naming that we want, compared to the naming we merged
in #32399.
Includes renaming the API endpoints, but that should be fine as the
original PR was just merged and this isn't deployed anywhere.
This commit is contained in:
Mateusz Mandera
2025-01-29 12:48:22 +08:00
committed by Tim Abbott
parent a23663e6f9
commit 7390eb2ed0
9 changed files with 57 additions and 57 deletions

View File

@@ -102,7 +102,7 @@ from zerver.views.push_notifications import (
self_hosting_auth_json_endpoint,
self_hosting_auth_not_configured,
self_hosting_auth_redirect_endpoint,
self_hosting_registration_takeover_challenge_verify,
self_hosting_registration_transfer_challenge_verify,
send_test_push_notification_api,
)
from zerver.views.reactions import add_reaction, remove_reaction
@@ -872,7 +872,7 @@ urls += [
urls += [
path(
"api/v1/zulip-services/verify/<str:access_token>/",
self_hosting_registration_takeover_challenge_verify,
self_hosting_registration_transfer_challenge_verify,
),
]