Example #1
0
        public async Task <IActionResult> Leave(int id)
        {
            await _service.LeaveChatroomAsync(chatroomId : id, User);

            return(RedirectToAction(nameof(Index)));
        }