Added A-Cam (Vilde).

This commit is contained in:
DebaucheryLibrarian
2026-06-02 06:26:24 +02:00
parent 3532911292
commit 8f63f6283b
5 changed files with 336 additions and 1 deletions

View File

@@ -9453,7 +9453,6 @@ const sites = [
{
slug: 'realitysis',
name: 'Reality Sis',
rename: 'lilsis',
url: 'https://realitysis.com',
alias: ['lil sis'],
tags: ['family'],
@@ -14678,6 +14677,45 @@ const sites = [
description: 'BustyOnes.com bringing you the most beautiful big breasts in the world! The hottest women alive showcasing their fantastic tits.',
parent: 'twistys',
},
// A-CAM / VILDE
{
name: 'Vilde',
slug: 'vilde',
alias: ['vilde tv', 'johan vilde'],
url: 'https://vilde.tv',
parent: 'acam',
independent: true,
parameters: {
languageUrl: 'https://www.johanvilde.com/select-language',
languageKey: 'select_lang',
},
},
{
name: 'Anal Hooked',
slug: 'analhooked',
url: 'https://analhooked.com',
parent: 'acam',
tags: ['anal'],
independent: true,
parameters: {
layout: 'hooked',
staticUrl: true,
languageUrl: 'https://analhooked.com/change-option',
languageKey: 'select_language',
},
},
{
name: 'Channel Anal',
slug: 'channelanal',
alias: ['kanal anal'],
url: 'https://channelanal.com',
parent: 'acam',
independent: true,
tags: ['anal'],
parameters: {
layout: 'kanal',
},
},
// VIP SEX VAULT
{
name: 'Los Consoladores',
@@ -15240,6 +15278,16 @@ sites.reduce((acc, site) => {
/* eslint-disable max-len */
exports.seed = async (knex) => {
sites.reduce((acc, channel) => {
if (acc.has(channel.slug)) {
console.log('DUPLICATE', channel.slug);
} else {
acc.add(channel.slug);
}
return acc;
}, new Set());
await Promise.all(sites.map(async (channel) => {
if (channel.rename) {
await knex('entities')