From 65dedc80edef6de15284acbb78816358ad023667 Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Tue, 19 Nov 2024 03:28:53 +0100 Subject: [PATCH] =?UTF-8?q?Removed=20Tu=20Venganza=20and=20Operaci=C3=B3n?= =?UTF-8?q?=20Limpieza=20from=20Mamacitaz=20on=20PornDoe.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- seeds/02_sites.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/seeds/02_sites.js b/seeds/02_sites.js index 8536c51c..6f6ecdfb 100755 --- a/seeds/02_sites.js +++ b/seeds/02_sites.js @@ -12909,6 +12909,13 @@ const sites = [ parent: 'loveherfilms', }, // MAMACITAZ + { + name: 'Mamacitaz', + slug: 'mamacitaz', + url: 'https://mamacitaz.com/channels/mamacitaz.en.html', + tags: ['latina'], + parent: 'mamacitaz', + }, { name: 'Her Big Ass', slug: 'herbigass', @@ -12935,6 +12942,7 @@ const sites = [ slug: 'tuvenganza', url: 'https://mamacitaz.com/channels/tu-venganza.en.html', tags: ['latina'], + delete: true, parent: 'mamacitaz', }, { @@ -12942,6 +12950,7 @@ const sites = [ slug: 'operacionlimpieza', url: 'https://mamacitaz.com/channels/operation-limpieza.en.html', tags: ['latina'], + delete: true, parent: 'mamacitaz', }, // MARISKA X @@ -20919,7 +20928,7 @@ exports.seed = (knex) => Promise.resolve() const { inserted, updated } = await upsert('entities', sitesWithNetworks, ['slug', 'type'], knex); const sitesMap = [].concat(inserted, updated).reduce((acc, { id, slug }) => ({ ...acc, [slug]: id }), {}); - const tagAssociations = sites.map((site) => (site.tags + const tagAssociations = sites.map((site) => (site.tags && !site.delete ? site.tags.map((tagSlug) => { const tag = tagsMap[tagSlug];