Improved domainremoval cleanup

This commit is contained in:
WBHarry 2025-08-06 12:01:22 +02:00
parent d01965e5b9
commit 902bfac490
6 changed files with 86 additions and 35 deletions

View file

@ -370,3 +370,7 @@ export async function createEmbeddedItemWithEffects(actor, baseData, update) {
return doc;
}
export const slugify = name => {
return name.toLowerCase().replaceAll(' ', '-').replaceAll('.', '');
};