Added Fabulous Cash sites.

This commit is contained in:
DebaucheryLibrarian
2023-04-06 01:28:59 +02:00
parent 5448100b3b
commit 54b1c03a8d
95 changed files with 156 additions and 24 deletions

View File

@@ -250,6 +250,12 @@ const networks = [
url: 'https://dogfartnetwork.com',
description: 'The world famous Dogfart Interracial series. Online since 1996, we have the largest collection of Interracial videos, pictures and content on the web.',
},
{
slug: 'fabulouscash',
name: 'Fabulous Cash',
hasLogo: false,
url: 'https://fabulouscash.com',
},
{
slug: 'fantasymassage',
name: 'Fantasy Massage',
@@ -679,6 +685,7 @@ exports.seed = (knex) => Promise.resolve()
alias: network.alias,
url: network.url,
description: network.description,
has_logo: network.hasLogo,
parameters: network.parameters,
parent_id: grandParentNetworksBySlug[network.parent] || null,
}));
@@ -693,6 +700,7 @@ exports.seed = (knex) => Promise.resolve()
alias: network.alias,
url: network.url,
description: network.description,
has_logo: network.hasLogo,
parameters: network.parameters,
parent_id: parentNetworksBySlug[network.parent] || grandParentNetworksBySlug[network.parent] || null,
}));