Refactored AnalVids so studios are channels, excluded most channels from daily update.

This commit is contained in:
DebaucheryLibrarian
2024-10-20 01:59:18 +02:00
parent d89ced2e6e
commit 5374d6fd39
11 changed files with 6139 additions and 11963 deletions

View File

@@ -1,4 +1,5 @@
const upsert = require('../src/utils/upsert');
const analvids = require('./analvids');
/* eslint-disable max-len */
const sites = [
@@ -5818,16 +5819,8 @@ const sites = [
description: 'Check out what the hottest KinkMen models have for you. Get a test of this kinky private homemade gay BDSM bondage porn made just for you.',
parent: 'kinkmen',
},
// LEGALPORNO
{
slug: 'analvids',
name: 'AnalVids',
alias: ['legalporno', 'clip', 'gonzo'],
url: 'https://www.analvids.com',
independent: true,
showcased: false, // showcased per studio
parent: 'wgcz',
},
// ANALVIDS / LEGALPORNO
...analvids,
// LETS DOE IT
{
name: 'The White Boxxx',
@@ -13971,6 +13964,18 @@ const sites = [
},
];
/*
sites.reduce((acc, site) => {
if (acc.has(site.slug)) {
console.log('DUPLICATE!', site.slug);
}
acc.add(site.slug);
return acc;
}, new Set());
*/
/* eslint-disable max-len */
exports.seed = (knex) => Promise.resolve()
.then(async () => {