delete_topic: Add support for empty topic name.

This commit is contained in:
Prakhar Pratyush
2024-11-15 16:26:18 +05:30
committed by Tim Abbott
parent 79e55b1563
commit 0eea8bb4ac
2 changed files with 9 additions and 0 deletions

View File

@@ -80,6 +80,7 @@ from zerver.lib.subscription_info import gather_subscriptions
from zerver.lib.topic import (
get_topic_history_for_public_stream,
get_topic_history_for_stream,
maybe_rename_general_chat_to_empty_topic,
messages_for_topic,
)
from zerver.lib.typed_endpoint import ApiParamConfig, PathOnly, typed_endpoint
@@ -965,6 +966,7 @@ def delete_in_topic(
topic_name: str,
) -> HttpResponse:
stream, ignored_sub = access_stream_by_id(user_profile, stream_id)
topic_name = maybe_rename_general_chat_to_empty_topic(topic_name)
messages = messages_for_topic(
user_profile.realm_id, assert_is_not_none(stream.recipient_id), topic_name