Carrie Prejean Boller challenges the commission’s political agenda, highlighting censorship and religious freedom conflicts.
Key takeaways
- The religious liberty commission was not genuinely focused on protecting religious freedom.
- Carrie Prejean Boller believes her personal experiences with discrimination make her uniquely qualified to speak on religious freedom.
- The commission’s goal was to provide actionable recommendations to the president regarding religious freedom.
- Censorship around discussions of suffering in Gaza and Zionism reflects a broader cultural war.
- Carrie Prejean Boller does not consider Paula White a legitimate Christian leader.
- Boller believes Paula White’s actions contradict Christian doctrine.
- Criticism of Israel’s actions in Gaza is a significant factor in political backlash.
- Carrie Prejean Boller expresses strong disapproval of the commission’s perceived requirements regarding political alignment.
- Boller claims that the commission is attempting to remove her due to her views on Gaza.
- The commission was not genuinely focused on religious freedom but rather on promoting a specific political agenda.
- The political dynamics within the commission are a source of contention for Boller.
- Boller’s stance on religious freedom is informed by her lived experiences with discrimination.
- The intersection of faith and political criticism is a recurring theme in Boller’s insights.
Guest intro
Carrie Prejean Boller serves as CEO and Designer of Bella Grace Jewelry and advisor for religious freedom. She was crowned Miss California USA 2009 and placed as first runner-up at Miss USA 2009 after defending traditional marriage based on her Christian beliefs. Unwilling to compromise her faith, she recently refused a presidential appointment amid controversy over Christian loyalty to Israel.
The religious liberty commission’s true agenda
Boller’s qualifications and experiences
The commission’s objectives and recommendations
Cultural war and censorship
Critique of religious leadership
-
— Carrie Prejean Boller
- Boller’s critique of Paula White reflects broader debates within the Christian community.
-
— Carrie Prejean Boller
- Boller’s insights highlight concerns about the integrity of religious leaders.
-
— Carrie Prejean Boller
- The alignment of religious leaders with doctrine is a key theme in Boller’s critique.
- Boller’s perspective is informed by her understanding of Christian teachings.
- The role of religious leaders in shaping public perception is a significant issue in Boller’s discussion.
Political backlash and Israel
Political alignment and the commission
Claims of removal from the commission
The commission’s focus on political agenda
Carrie Prejean Boller challenges the commission’s political agenda, highlighting censorship and religious freedom conflicts.
Key takeaways
- The religious liberty commission was not genuinely focused on protecting religious freedom.
- Carrie Prejean Boller believes her personal experiences with discrimination make her uniquely qualified to speak on religious freedom.
- The commission’s goal was to provide actionable recommendations to the president regarding religious freedom.
- Censorship around discussions of suffering in Gaza and Zionism reflects a broader cultural war.
- Carrie Prejean Boller does not consider Paula White a legitimate Christian leader.
- Boller believes Paula White’s actions contradict Christian doctrine.
- Criticism of Israel’s actions in Gaza is a significant factor in political backlash.
- Carrie Prejean Boller expresses strong disapproval of the commission’s perceived requirements regarding political alignment.
- Boller claims that the commission is attempting to remove her due to her views on Gaza.
- The commission was not genuinely focused on religious freedom but rather on promoting a specific political agenda.
- The political dynamics within the commission are a source of contention for Boller.
- Boller’s stance on religious freedom is informed by her lived experiences with discrimination.
- The intersection of faith and political criticism is a recurring theme in Boller’s insights.
Guest intro
Carrie Prejean Boller serves as CEO and Designer of Bella Grace Jewelry and advisor for religious freedom. She was crowned Miss California USA 2009 and placed as first runner-up at Miss USA 2009 after defending traditional marriage based on her Christian beliefs. Unwilling to compromise her faith, she recently refused a presidential appointment amid controversy over Christian loyalty to Israel.
The religious liberty commission’s true agenda
Boller’s qualifications and experiences
The commission’s objectives and recommendations
Cultural war and censorship
Critique of religious leadership
-
— Carrie Prejean Boller
- Boller’s critique of Paula White reflects broader debates within the Christian community.
-
— Carrie Prejean Boller
- Boller’s insights highlight concerns about the integrity of religious leaders.
-
— Carrie Prejean Boller
- The alignment of religious leaders with doctrine is a key theme in Boller’s critique.
- Boller’s perspective is informed by her understanding of Christian teachings.
- The role of religious leaders in shaping public perception is a significant issue in Boller’s discussion.
Political backlash and Israel
Political alignment and the commission
Claims of removal from the commission
The commission’s focus on political agenda
Loading more articles…
You’ve reached the end
Add us on Google
`;
}
function createMobileArticle(article) {
const displayDate = getDisplayDate(article);
const editorSlug = article.editor ? article.editor.toLowerCase().replace(/\s+/g, ‘-‘) : ”;
const captionHtml = article.imageCaption ? `
${article.imageCaption}
` : ”;
const authorHtml = article.isPressRelease ? ” : `
`;
return `
${captionHtml}
${article.subheadline ? `
${article.subheadline}
` : ”}
${createSocialShare()}
${authorHtml}
${displayDate}
${article.content}
${article.isPressRelease ? ” : article.isSponsored ? `
` : `
`}
`;
}
function createDesktopArticle(article, sidebarAdHtml) {
const editorSlug = article.editor ? article.editor.toLowerCase().replace(/\s+/g, ‘-‘) : ”;
const displayDate = getDisplayDate(article);
const captionHtml = article.imageCaption ? `
${article.imageCaption}
` : ”;
const categoriesHtml = article.categories.map((cat, i) => {
const separator = i < article.categories.length – 1 ? ‘|‘ : ”;
return `${cat}${separator}`;
}).join(”);
const desktopAuthorHtml = article.isPressRelease ? ” : `
`;
return `
${categoriesHtml}
${article.subheadline}
` : ”}
${desktopAuthorHtml}
${displayDate}
${createSocialShare()}
${captionHtml}
${article.isPressRelease ? ” : article.isSponsored ? `
` : `
`}
`;
}
function loadMoreArticles() {
if (isLoading || !hasMore) return;
isLoading = true;
loadingText.classList.remove(‘hidden’);
// Build form data for AJAX request
const formData = new FormData();
formData.append(‘action’, ‘cb_lovable_load_more’);
formData.append(‘current_post_id’, lastLoadedPostId);
formData.append(‘primary_cat_id’, primaryCatId);
formData.append(‘before_date’, lastLoadedDate);
formData.append(‘loaded_ids’, loadedPostIds.join(‘,’));
fetch(ajaxUrl, {
method: ‘POST’,
body: formData
})
.then(response => response.json())
.then(data => {
isLoading = false;
loadingText.classList.add(‘hidden’);
if (data.success && data.has_more && data.article) {
const article = data.article;
const sidebarAdHtml = data.sidebar_ad_html || ”;
// Check for duplicates
if (loadedPostIds.includes(article.id)) {
console.log(‘Duplicate article detected, skipping:’, article.id);
// Update pagination vars and try again
lastLoadedDate = article.publishDate;
loadMoreArticles();
return;
}
// Add to mobile container
mobileContainer.insertAdjacentHTML(‘beforeend’, createMobileArticle(article));
// Add to desktop container with fresh ad HTML
desktopContainer.insertAdjacentHTML(‘beforeend’, createDesktopArticle(article, sidebarAdHtml));
// Update tracking variables
loadedPostIds.push(article.id);
lastLoadedPostId = article.id;
lastLoadedDate = article.publishDate;
// Execute any inline scripts in the new content (for ads)
const newArticle = desktopContainer.querySelector(`article[data-article-id=”${article.id}”]`);
if (newArticle) {
const scripts = newArticle.querySelectorAll(‘script’);
scripts.forEach(script => {
const newScript = document.createElement(‘script’);
if (script.src) {
newScript.src = script.src;
} else {
newScript.textContent = script.textContent;
}
document.body.appendChild(newScript);
});
}
// Trigger Ad Inserter if available
if (typeof ai_check_and_insert_block === ‘function’) {
ai_check_and_insert_block();
}
// Trigger Google Publisher Tag refresh if available
if (typeof googletag !== ‘undefined’ && googletag.pubads) {
googletag.cmd.push(function() {
googletag.pubads().refresh();
});
}
} else if (data.success && !data.has_more) {
hasMore = false;
endText.classList.remove(‘hidden’);
} else if (!data.success) {
console.error(‘AJAX error:’, data.error);
hasMore = false;
endText.textContent=”Error loading more articles”;
endText.classList.remove(‘hidden’);
}
})
.catch(error => {
console.error(‘Fetch error:’, error);
isLoading = false;
loadingText.classList.add(‘hidden’);
hasMore = false;
endText.textContent=”Error loading more articles”;
endText.classList.remove(‘hidden’);
});
}
// Set up IntersectionObserver
const observer = new IntersectionObserver(function(entries) {
if (entries[0].isIntersecting) {
loadMoreArticles();
}
}, { threshold: 0.1 });
observer.observe(loadingTrigger);
})();
© Decentral Media and Crypto Briefing® 2026.
Source: https://cryptobriefing.com/carrie-prejean-boller-the-religious-liberty-commission-prioritizes-political-agendas-over-genuine-freedom-censorship-reflects-a-cultural-war-and-her-personal-experiences-shape-her-advocacy-tucker/







