feat: add support for broadcasting and handling channel deletions across clients

This commit is contained in:
Stone_Red
2026-07-17 16:35:59 +02:00
committed by HueByte
parent 4d25458717
commit a9519a52cc
11 changed files with 39 additions and 0 deletions
@@ -162,6 +162,8 @@ public class ChannelsController : ControllerBase
if (!result.IsSuccess)
return MapChannelError(result);
await _chatService.BroadcastChannelDeletedAsync(channel.ToLowerInvariant().Trim());
return NoContent();
}