fix(dependencies): update @gltf-transform packages and sequelize-cli version

- Upgraded @gltf-transform/cli, core, extensions, and functions to version 4.3.0 for improved functionality and compatibility.
- Updated sequelize-cli to version 6.6.5 to address potential vulnerabilities.
- Added an overrides section in package.json for minimatch to ensure consistent behavior across environments.
- Refactored the EroticAccessView.vue component for improved structure and readability.
This commit is contained in:
Torsten Schulz (local)
2026-03-27 10:23:25 +01:00
parent e13deb0720
commit 1a86061680
3 changed files with 359 additions and 1648 deletions

1923
backend/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -21,7 +21,7 @@
"author": "",
"license": "ISC",
"dependencies": {
"@gltf-transform/cli": "^3.5.1",
"@gltf-transform/cli": "^4.3.0",
"amqplib": "^0.10.9",
"bcryptjs": "^3.0.3",
"connect-redis": "^9.0.0",
@@ -47,6 +47,9 @@
"ws": "^8.20.0"
},
"devDependencies": {
"sequelize-cli": "^6.6.2"
"sequelize-cli": "^6.6.5"
},
"overrides": {
"minimatch": "10.2.4"
}
}

View File

@@ -1,42 +1,46 @@
<template>
<div class="erotic-access-page">
<section class="erotic-access-hero surface-card">
<span class="erotic-access-eyebrow">{{ $t('socialnetwork.erotic.eyebrow') }}</span>
<h2>{{ $t('socialnetwork.erotic.accessTitle') }}</h2>
<p>{{ $t('socialnetwork.erotic.accessIntro') }}</p>
</section>
<div class="contenthidden">
<div class="contentscroll">
<div class="erotic-access-page">
<section class="erotic-access-hero surface-card">
<span class="erotic-access-eyebrow">{{ $t('socialnetwork.erotic.eyebrow') }}</span>
<h2>{{ $t('socialnetwork.erotic.accessTitle') }}</h2>
<p>{{ $t('socialnetwork.erotic.accessIntro') }}</p>
</section>
<section class="erotic-access-panel surface-card">
<div class="erotic-access-status">
<strong>{{ statusTitle }}</strong>
<span>{{ statusText }}</span>
<section class="erotic-access-panel surface-card">
<div class="erotic-access-status">
<strong>{{ statusTitle }}</strong>
<span>{{ statusText }}</span>
</div>
<div v-if="account?.adultVerificationRequest" class="erotic-access-request">
<strong>{{ $t('socialnetwork.erotic.requestInfoTitle') }}</strong>
<span>{{ account.adultVerificationRequest.originalName }}</span>
<span v-if="account.adultVerificationRequest.submittedAt">{{ formattedSubmittedAt }}</span>
<span v-if="account.adultVerificationRequest.note">{{ account.adultVerificationRequest.note }}</span>
</div>
<div class="erotic-access-actions">
<router-link to="/settings/account" class="erotic-access-link">
{{ $t('socialnetwork.erotic.settingsLink') }}
</router-link>
</div>
<form v-if="canRequestVerification" class="erotic-access-form" @submit.prevent="requestVerification">
<label>
<span>{{ $t('socialnetwork.erotic.documentLabel') }}</span>
<input type="file" accept=".jpg,.jpeg,.png,.webp,.pdf" @change="handleFileChange" />
</label>
<label>
<span>{{ $t('socialnetwork.erotic.noteLabel') }}</span>
<textarea v-model="note" rows="4"></textarea>
</label>
<button type="submit">{{ $t('socialnetwork.erotic.requestVerification') }}</button>
</form>
</section>
</div>
<div v-if="account?.adultVerificationRequest" class="erotic-access-request">
<strong>{{ $t('socialnetwork.erotic.requestInfoTitle') }}</strong>
<span>{{ account.adultVerificationRequest.originalName }}</span>
<span v-if="account.adultVerificationRequest.submittedAt">{{ formattedSubmittedAt }}</span>
<span v-if="account.adultVerificationRequest.note">{{ account.adultVerificationRequest.note }}</span>
</div>
<div class="erotic-access-actions">
<router-link to="/settings/account" class="erotic-access-link">
{{ $t('socialnetwork.erotic.settingsLink') }}
</router-link>
</div>
<form v-if="canRequestVerification" class="erotic-access-form" @submit.prevent="requestVerification">
<label>
<span>{{ $t('socialnetwork.erotic.documentLabel') }}</span>
<input type="file" accept=".jpg,.jpeg,.png,.webp,.pdf" @change="handleFileChange" />
</label>
<label>
<span>{{ $t('socialnetwork.erotic.noteLabel') }}</span>
<textarea v-model="note" rows="4"></textarea>
</label>
<button type="submit">{{ $t('socialnetwork.erotic.requestVerification') }}</button>
</form>
</section>
</div>
</div>
</template>
@@ -123,6 +127,7 @@ export default {
display: grid;
gap: 18px;
max-width: 920px;
padding-bottom: 24px;
}
.erotic-access-hero,