public async Task <bool> Exists(Guid communityId) { var community = await _communityRepository.GetById(communityId) .ConfigureAwait(true); return(community != null); }