Example #1
0
        protected bool UserIsAdminInChat(string userId, string chatId)
        {
            string adminId = _repo.GetAdminIdOfChat(chatId);

            return(userId.Equals(adminId));
        }