add new global replace service for bulk updating content

This commit is contained in:
sbwalker
2026-02-18 13:59:25 -05:00
parent 48a70c8be3
commit 13a58ed099
12 changed files with 599 additions and 8 deletions

View File

@@ -36,7 +36,7 @@ namespace Oqtane.Infrastructure
// iterate through sites for current tenant
List<Site> sites = siteRepository.GetSites().ToList();
foreach (Site site in sites)
foreach (Site site in sites.Where(item => !item.IsDeleted))
{
log += "<br />Processing Site: " + site.Name + "<br />";
int count;