forked from DebaucheryLibrarian/traxxx
Added Inn of Sinn, added Lil Sis to Nubiles.
This commit is contained in:
@@ -442,6 +442,7 @@ const tags = [
|
||||
slug: 'dp',
|
||||
description: 'Getting your [ass](/tag/anal) and pussy fucked at the same time. If you take another cock in your mouth, you are [airtight](/tag/airtight).',
|
||||
group: 'penetration',
|
||||
implies: ['anal'],
|
||||
},
|
||||
{
|
||||
name: 'dungeon',
|
||||
@@ -2431,6 +2432,11 @@ const aliases = [
|
||||
name: 'strip pole dancing',
|
||||
for: 'strip-pole-dancing',
|
||||
},
|
||||
{
|
||||
name: 'anal gangbangs',
|
||||
for: 'gangbang',
|
||||
implies: ['anal'],
|
||||
},
|
||||
];
|
||||
|
||||
const priorities = [ // higher index is higher priority
|
||||
@@ -2481,7 +2487,17 @@ exports.seed = (knex) => Promise.resolve()
|
||||
};
|
||||
});
|
||||
|
||||
return upsert('tags', tagsWithGroups, 'slug');
|
||||
await upsert('tags', tagsWithGroups, 'slug');
|
||||
|
||||
const tagEntries = await knex('tags').select('*').where({ alias_for: null });
|
||||
const tagsMap = tagEntries.reduce((acc, { id, slug }) => ({ ...acc, [slug]: id }), {});
|
||||
|
||||
const implications = tags.map((tag) => ({
|
||||
slug: tag.slug,
|
||||
implied_tag_ids: tag.implies?.map((slug) => tagsMap[slug]),
|
||||
}));
|
||||
|
||||
await upsert('tags', implications, 'slug');
|
||||
})
|
||||
.then(async () => {
|
||||
const tagEntries = await knex('tags').select('*').where({ alias_for: null });
|
||||
@@ -2490,6 +2506,7 @@ exports.seed = (knex) => Promise.resolve()
|
||||
const tagAliases = aliases.map((alias) => ({
|
||||
name: alias.name,
|
||||
alias_for: tagsMap[alias.for],
|
||||
implied_tag_ids: alias.implies?.map((slug) => tagsMap[slug]),
|
||||
secondary: !!alias.secondary,
|
||||
}));
|
||||
|
||||
|
||||
@@ -381,6 +381,10 @@ const networks = [
|
||||
sequential: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
slug: 'innofsin',
|
||||
name: 'Inn Of Sin',
|
||||
},
|
||||
{
|
||||
slug: 'interracialpass',
|
||||
name: 'Interracial Pass',
|
||||
|
||||
@@ -4507,6 +4507,105 @@ const sites = [
|
||||
name: 'InTheCrack',
|
||||
url: 'https://inthecrack.com',
|
||||
},
|
||||
// INN OF SIN
|
||||
{
|
||||
slug: 'richardmannevents',
|
||||
name: 'Richard Mann Events',
|
||||
url: 'https://richardmannevents.com',
|
||||
parent: 'innofsin',
|
||||
},
|
||||
{
|
||||
slug: 'adreenawinters',
|
||||
name: 'Adreena Winters',
|
||||
url: 'https://adreenawinters.com',
|
||||
parent: 'innofsin',
|
||||
},
|
||||
{
|
||||
slug: 'bbctitans',
|
||||
name: 'BBC Titans',
|
||||
url: 'https://bbctitans.com',
|
||||
tags: ['bbc'],
|
||||
parent: 'innofsin',
|
||||
},
|
||||
{
|
||||
slug: 'wefuckin',
|
||||
name: 'We Fuckin',
|
||||
url: 'https://wefuckin.com',
|
||||
parent: 'innofsin',
|
||||
},
|
||||
{
|
||||
slug: 'mydeepdarksecret',
|
||||
name: 'My Deep Dark Secret',
|
||||
url: 'https://mydeepdarksecret.com',
|
||||
parent: 'innofsin',
|
||||
parameters: {
|
||||
layout: 'classic',
|
||||
},
|
||||
},
|
||||
{
|
||||
slug: 'rebelrhyder',
|
||||
name: 'Rebel Rhyder',
|
||||
url: 'https://rebelrhyder.com',
|
||||
parent: 'innofsin',
|
||||
},
|
||||
{
|
||||
slug: 'tatsandtits',
|
||||
name: 'Tats And Tits',
|
||||
url: 'https://tatsandtits.com',
|
||||
tags: ['tattoos'],
|
||||
parent: 'innofsin',
|
||||
},
|
||||
{
|
||||
slug: 'backsidebonanza',
|
||||
name: 'Back Side Bonanza',
|
||||
url: 'https://backsidebonanza.com',
|
||||
hasLogo: false,
|
||||
parent: 'innofsin',
|
||||
parameters: {
|
||||
layout: 'sliced',
|
||||
},
|
||||
},
|
||||
{
|
||||
slug: 'puertorock',
|
||||
name: 'Puerto-Rock',
|
||||
url: 'https://puerto-rock.com',
|
||||
parent: 'innofsin',
|
||||
},
|
||||
{
|
||||
slug: 'richardmannsworld',
|
||||
name: 'Richard Mann\'s World',
|
||||
url: 'https://richardmannsworld.com',
|
||||
parent: 'innofsin',
|
||||
parameters: {
|
||||
layout: 'classic',
|
||||
},
|
||||
},
|
||||
{
|
||||
slug: 'trans4thefans',
|
||||
name: 'Trans 4 The Fans',
|
||||
url: 'https://trans4thefans.com',
|
||||
tags: ['transsexual'],
|
||||
parent: 'innofsin',
|
||||
},
|
||||
{
|
||||
slug: 'dannyoceansadventures',
|
||||
name: 'Danny Ocean\'s Adventures',
|
||||
url: 'https://dannyoceansadventures.com',
|
||||
parent: 'innofsin',
|
||||
parameters: {
|
||||
layout: 'classic',
|
||||
},
|
||||
},
|
||||
{
|
||||
slug: 'cumthirstycougars',
|
||||
name: 'Cum Thirsty Cougars',
|
||||
url: 'https://cumthirstycougars.com',
|
||||
hasLogo: false,
|
||||
parent: 'innofsin',
|
||||
parameters: {
|
||||
layout: 'sliced',
|
||||
},
|
||||
},
|
||||
// INTERRACIAL PASS
|
||||
{
|
||||
slug: '2bigtobetrue',
|
||||
@@ -7777,6 +7876,13 @@ const sites = [
|
||||
tags: ['parody'],
|
||||
parent: 'nubiles',
|
||||
},
|
||||
{
|
||||
slug: 'lilsis',
|
||||
name: 'Lil Sis',
|
||||
url: 'https://www.lilsis.com',
|
||||
tags: ['family'],
|
||||
parent: 'nubiles',
|
||||
},
|
||||
// PASCALS SUBSLUTS
|
||||
{
|
||||
slug: 'pascalssubsluts',
|
||||
|
||||
Reference in New Issue
Block a user