public void RequireAuthorizedUserIsGroupAdminFromChannel(Guid channelId)
        {
            var channel = RequireAndGetChannelById(channelId);

            _groupValidationService.RequireUserIdIsGroupAdmin(
                _authorizedUser.Id,
                channel.GroupId,
                "You are not a administrator of group, to which this channel belongs."
                );
        }