Add debug logging for role-based contact data visibility
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"date": "2025-10-21T12:40:05.363Z",
|
||||
"date": "2025-10-21T12:43:35.107Z",
|
||||
"preset": "node-server",
|
||||
"framework": {
|
||||
"name": "nuxt",
|
||||
|
||||
File diff suppressed because one or more lines are too long
26
.output/public/_nuxt/Ctsomia6.js
Normal file
26
.output/public/_nuxt/Ctsomia6.js
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +1 @@
|
||||
{"id":"a70ec7ce-a432-4ca7-a120-b9660be7b615","timestamp":1761050398597}
|
||||
{"id":"fded8fe3-e37f-48d2-bfc6-ef86564402c9","timestamp":1761050608299}
|
||||
@@ -1 +0,0 @@
|
||||
{"id":"a70ec7ce-a432-4ca7-a120-b9660be7b615","timestamp":1761050398597,"matcher":{"static":{},"wildcard":{},"dynamic":{}},"prerendered":[]}
|
||||
@@ -0,0 +1 @@
|
||||
{"id":"fded8fe3-e37f-48d2-bfc6-ef86564402c9","timestamp":1761050608299,"matcher":{"static":{},"wildcard":{},"dynamic":{}},"prerendered":[]}
|
||||
File diff suppressed because one or more lines are too long
@@ -274,7 +274,7 @@ const client_manifest = {
|
||||
"module": true,
|
||||
"prefetch": true,
|
||||
"preload": true,
|
||||
"file": "B4vdtHsr.js",
|
||||
"file": "Dorx0xsu.js",
|
||||
"name": "entry",
|
||||
"src": "node_modules/nuxt/dist/app/entry.js",
|
||||
"isEntry": true,
|
||||
@@ -284,14 +284,14 @@ const client_manifest = {
|
||||
"node_modules/nuxt/dist/app/components/error-500.vue"
|
||||
],
|
||||
"css": [
|
||||
"entry.CjazO3pS.css"
|
||||
"entry.FYEsgUy-.css"
|
||||
],
|
||||
"assets": [
|
||||
"Harheimer TC.CKfYAfp1.svg"
|
||||
]
|
||||
},
|
||||
"entry.CjazO3pS.css": {
|
||||
"file": "entry.CjazO3pS.css",
|
||||
"entry.FYEsgUy-.css": {
|
||||
"file": "entry.FYEsgUy-.css",
|
||||
"resourceType": "style",
|
||||
"prefetch": true,
|
||||
"preload": true
|
||||
@@ -563,7 +563,7 @@ const client_manifest = {
|
||||
"module": true,
|
||||
"prefetch": true,
|
||||
"preload": true,
|
||||
"file": "CEVega_m.js",
|
||||
"file": "Ctsomia6.js",
|
||||
"name": "mitglieder",
|
||||
"src": "pages/mitgliederbereich/mitglieder.vue",
|
||||
"isDynamicEntry": true,
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -31,7 +31,7 @@ const _sfc_main = {
|
||||
const showModal = ref(false);
|
||||
const editingMember = ref(null);
|
||||
const errorMessage = ref("");
|
||||
const viewMode = ref("table");
|
||||
const viewMode = ref("cards");
|
||||
const formData = ref({
|
||||
firstName: "",
|
||||
lastName: "",
|
||||
@@ -43,6 +43,9 @@ const _sfc_main = {
|
||||
const canEdit = computed(() => {
|
||||
return authStore.role === "admin" || authStore.role === "vorstand";
|
||||
});
|
||||
const canViewContactData = computed(() => {
|
||||
return authStore.role === "vorstand";
|
||||
});
|
||||
const formatDate = (dateString) => {
|
||||
if (!dateString) return "";
|
||||
const date = new Date(dateString);
|
||||
@@ -98,16 +101,28 @@ const _sfc_main = {
|
||||
_push(`<!---->`);
|
||||
}
|
||||
_push(`</td><td class="px-4 py-3 whitespace-nowrap">`);
|
||||
if (member.email) {
|
||||
_push(`<a${ssrRenderAttr("href", `mailto:${member.email}`)} class="text-sm text-primary-600 hover:text-primary-800">${ssrInterpolate(member.email)}</a>`);
|
||||
if (canViewContactData.value) {
|
||||
_push(`<!--[-->`);
|
||||
if (member.email) {
|
||||
_push(`<a${ssrRenderAttr("href", `mailto:${member.email}`)} class="text-sm text-primary-600 hover:text-primary-800">${ssrInterpolate(member.email)}</a>`);
|
||||
} else {
|
||||
_push(`<span class="text-sm text-gray-400">-</span>`);
|
||||
}
|
||||
_push(`<!--]-->`);
|
||||
} else {
|
||||
_push(`<span class="text-sm text-gray-400">-</span>`);
|
||||
_push(`<span class="text-sm text-gray-400">Nur für Vorstand</span>`);
|
||||
}
|
||||
_push(`</td><td class="px-4 py-3 whitespace-nowrap">`);
|
||||
if (member.phone) {
|
||||
_push(`<a${ssrRenderAttr("href", `tel:${member.phone}`)} class="text-sm text-primary-600 hover:text-primary-800">${ssrInterpolate(member.phone)}</a>`);
|
||||
if (canViewContactData.value) {
|
||||
_push(`<!--[-->`);
|
||||
if (member.phone) {
|
||||
_push(`<a${ssrRenderAttr("href", `tel:${member.phone}`)} class="text-sm text-primary-600 hover:text-primary-800">${ssrInterpolate(member.phone)}</a>`);
|
||||
} else {
|
||||
_push(`<span class="text-sm text-gray-400">-</span>`);
|
||||
}
|
||||
_push(`<!--]-->`);
|
||||
} else {
|
||||
_push(`<span class="text-sm text-gray-400">-</span>`);
|
||||
_push(`<span class="text-sm text-gray-400">Nur für Vorstand</span>`);
|
||||
}
|
||||
_push(`</td><td class="px-4 py-3 whitespace-nowrap"><div class="flex items-center space-x-2">`);
|
||||
if (member.hasLogin) {
|
||||
@@ -155,25 +170,36 @@ const _sfc_main = {
|
||||
_push(`<span class="ml-2 px-2 py-1 bg-purple-100 text-purple-800 text-xs font-medium rounded-full"> Aus Login-System </span>`);
|
||||
}
|
||||
_push(`</div><div class="grid sm:grid-cols-2 gap-3 text-gray-600">`);
|
||||
if (member.email) {
|
||||
_push(`<div class="flex items-center">`);
|
||||
if (canViewContactData.value) {
|
||||
_push(`<!--[-->`);
|
||||
if (member.email) {
|
||||
_push(`<div class="flex items-center">`);
|
||||
_push(ssrRenderComponent(unref(Mail), {
|
||||
size: 16,
|
||||
class: "mr-2 text-primary-600"
|
||||
}, null, _parent));
|
||||
_push(`<a${ssrRenderAttr("href", `mailto:${member.email}`)} class="hover:text-primary-600">${ssrInterpolate(member.email)}</a></div>`);
|
||||
} else {
|
||||
_push(`<!---->`);
|
||||
}
|
||||
if (member.phone) {
|
||||
_push(`<div class="flex items-center">`);
|
||||
_push(ssrRenderComponent(unref(Phone), {
|
||||
size: 16,
|
||||
class: "mr-2 text-primary-600"
|
||||
}, null, _parent));
|
||||
_push(`<a${ssrRenderAttr("href", `tel:${member.phone}`)} class="hover:text-primary-600">${ssrInterpolate(member.phone)}</a></div>`);
|
||||
} else {
|
||||
_push(`<!---->`);
|
||||
}
|
||||
_push(`<!--]-->`);
|
||||
} else {
|
||||
_push(`<div class="col-span-2 flex items-center text-gray-500 text-sm italic">`);
|
||||
_push(ssrRenderComponent(unref(Mail), {
|
||||
size: 16,
|
||||
class: "mr-2 text-primary-600"
|
||||
class: "mr-2"
|
||||
}, null, _parent));
|
||||
_push(`<a${ssrRenderAttr("href", `mailto:${member.email}`)} class="hover:text-primary-600">${ssrInterpolate(member.email)}</a></div>`);
|
||||
} else {
|
||||
_push(`<!---->`);
|
||||
}
|
||||
if (member.phone) {
|
||||
_push(`<div class="flex items-center">`);
|
||||
_push(ssrRenderComponent(unref(Phone), {
|
||||
size: 16,
|
||||
class: "mr-2 text-primary-600"
|
||||
}, null, _parent));
|
||||
_push(`<a${ssrRenderAttr("href", `tel:${member.phone}`)} class="hover:text-primary-600">${ssrInterpolate(member.phone)}</a></div>`);
|
||||
} else {
|
||||
_push(`<!---->`);
|
||||
_push(` Kontaktdaten nur für Vorstand sichtbar </div>`);
|
||||
}
|
||||
if (member.address) {
|
||||
_push(`<div class="flex items-start col-span-2">`);
|
||||
@@ -262,4 +288,4 @@ _sfc_main.setup = (props, ctx) => {
|
||||
};
|
||||
|
||||
export { _sfc_main as default };
|
||||
//# sourceMappingURL=mitglieder--YAYTNgB.mjs.map
|
||||
//# sourceMappingURL=mitglieder-B4jiyTlo.mjs.map
|
||||
1
.output/server/chunks/build/mitglieder-B4jiyTlo.mjs.map
Normal file
1
.output/server/chunks/build/mitglieder-B4jiyTlo.mjs.map
Normal file
File diff suppressed because one or more lines are too long
@@ -569,7 +569,7 @@ const _routes = [
|
||||
name: "mitgliederbereich-mitglieder",
|
||||
path: "/mitgliederbereich/mitglieder",
|
||||
meta: { ...__nuxt_page_meta || {}, ...{ "middleware": "auth" } },
|
||||
component: () => import('./mitglieder--YAYTNgB.mjs')
|
||||
component: () => import('./mitglieder-B4jiyTlo.mjs')
|
||||
}
|
||||
];
|
||||
const ROUTE_KEY_PARENTHESES_RE = /(:\w+)\([^)]+\)/g;
|
||||
|
||||
@@ -3,9 +3,9 @@ const styles = {
|
||||
"node_modules/nuxt/dist/app/components/error-404.vue": () => import('./error-404-styles.BsF5Lbhq.mjs').then(interopDefault),
|
||||
"node_modules/nuxt/dist/app/components/error-500.vue": () => import('./error-500-styles.Dccc6iq5.mjs').then(interopDefault),
|
||||
"components/Hero.vue": () => import('./Hero-styles.DnxJI8Rq.mjs').then(interopDefault),
|
||||
"components/Hero.vue?vue&type=style&index=0&scoped=33d25311&lang.css": () => import('./Hero-styles.DnxJI8Rq.mjs').then(interopDefault),
|
||||
"node_modules/nuxt/dist/app/components/error-404.vue?vue&type=style&index=0&scoped=b728498f&lang.css": () => import('./error-404-styles.BsF5Lbhq.mjs').then(interopDefault),
|
||||
"node_modules/nuxt/dist/app/components/error-500.vue?vue&type=style&index=0&scoped=70d84538&lang.css": () => import('./error-500-styles.Dccc6iq5.mjs').then(interopDefault),
|
||||
"components/Hero.vue?vue&type=style&index=0&scoped=33d25311&lang.css": () => import('./Hero-styles.DnxJI8Rq.mjs').then(interopDefault)
|
||||
"node_modules/nuxt/dist/app/components/error-500.vue?vue&type=style&index=0&scoped=70d84538&lang.css": () => import('./error-500-styles.Dccc6iq5.mjs').then(interopDefault)
|
||||
};
|
||||
|
||||
export { styles as default };
|
||||
|
||||
@@ -4293,7 +4293,7 @@ function _expandFromEnv(value) {
|
||||
const _inlineRuntimeConfig = {
|
||||
"app": {
|
||||
"baseURL": "/",
|
||||
"buildId": "a70ec7ce-a432-4ca7-a120-b9660be7b615",
|
||||
"buildId": "fded8fe3-e37f-48d2-bfc6-ef86564402c9",
|
||||
"buildAssetsDir": "/_nuxt/",
|
||||
"cdnURL": ""
|
||||
},
|
||||
@@ -4738,523 +4738,523 @@ const plugins = [
|
||||
];
|
||||
|
||||
const assets = {
|
||||
"/data/mannschaften.csv": {
|
||||
"type": "text/csv; charset=utf-8",
|
||||
"etag": "\"858-l94GKn8Q0I5RQnhrM0ZPJsYUmcw\"",
|
||||
"mtime": "2025-10-21T12:40:02.917Z",
|
||||
"size": 2136,
|
||||
"path": "../public/data/mannschaften.csv"
|
||||
},
|
||||
"/data/spielsysteme.csv": {
|
||||
"type": "text/csv; charset=utf-8",
|
||||
"etag": "\"9bc-4npLrNHYClsD0TKV5vSifxitfV0\"",
|
||||
"mtime": "2025-10-21T12:40:02.917Z",
|
||||
"size": 2492,
|
||||
"path": "../public/data/spielsysteme.csv"
|
||||
},
|
||||
"/data/termine.csv": {
|
||||
"type": "text/csv; charset=utf-8",
|
||||
"etag": "\"2e8-sZtaHF6QRmOQHinTWOLAYRgo6xk\"",
|
||||
"mtime": "2025-10-21T12:40:02.917Z",
|
||||
"size": 744,
|
||||
"path": "../public/data/termine.csv"
|
||||
},
|
||||
"/data/vereinsmeisterschaften.csv": {
|
||||
"type": "text/csv; charset=utf-8",
|
||||
"etag": "\"989-X8AB+Zegy2xUbjDtbQcXhuuyBDQ\"",
|
||||
"mtime": "2025-10-21T12:40:02.917Z",
|
||||
"size": 2441,
|
||||
"path": "../public/data/vereinsmeisterschaften.csv"
|
||||
},
|
||||
"/spielplaene/1. Mannschaft 2025⁄2026.pdf": {
|
||||
"type": "application/pdf",
|
||||
"etag": "\"64c6-+477M+gD/spwpWR9NO/tMJ/inCc\"",
|
||||
"mtime": "2025-10-21T12:40:02.917Z",
|
||||
"size": 25798,
|
||||
"path": "../public/spielplaene/1. Mannschaft 2025⁄2026.pdf"
|
||||
},
|
||||
"/spielplaene/2. Mannschaft 2025⁄2026.pdf": {
|
||||
"type": "application/pdf",
|
||||
"etag": "\"5bfa-DRJMHLV15iss67lEISoGqSYmZjE\"",
|
||||
"mtime": "2025-10-21T12:40:02.917Z",
|
||||
"size": 23546,
|
||||
"path": "../public/spielplaene/2. Mannschaft 2025⁄2026.pdf"
|
||||
},
|
||||
"/spielplaene/3. Mannschaft 2025⁄2026.pdf": {
|
||||
"type": "application/pdf",
|
||||
"etag": "\"7447-w933CPQdXhkWJ2AZOVdY0UgJnPo\"",
|
||||
"mtime": "2025-10-21T12:40:02.917Z",
|
||||
"size": 29767,
|
||||
"path": "../public/spielplaene/3. Mannschaft 2025⁄2026.pdf"
|
||||
},
|
||||
"/spielplaene/4. Mannschaft 2025⁄2026.pdf": {
|
||||
"type": "application/pdf",
|
||||
"etag": "\"6a9b-4TPGn1yQlFUMRj7oB43SN//Np9o\"",
|
||||
"mtime": "2025-10-21T12:40:02.917Z",
|
||||
"size": 27291,
|
||||
"path": "../public/spielplaene/4. Mannschaft 2025⁄2026.pdf"
|
||||
},
|
||||
"/spielplaene/5. Mannschaft 2025⁄2026.pdf": {
|
||||
"type": "application/pdf",
|
||||
"etag": "\"6523-5VUfCMaoiNhcwHhptHHTVJ3lSwQ\"",
|
||||
"mtime": "2025-10-21T12:40:02.917Z",
|
||||
"size": 25891,
|
||||
"path": "../public/spielplaene/5. Mannschaft 2025⁄2026.pdf"
|
||||
},
|
||||
"/spielplaene/Jugend 11 2025⁄2026.pdf": {
|
||||
"type": "application/pdf",
|
||||
"etag": "\"52e9-3Rrk9UKUxPh80pBJ0w9oLVbe5dA\"",
|
||||
"mtime": "2025-10-21T12:40:02.917Z",
|
||||
"size": 21225,
|
||||
"path": "../public/spielplaene/Jugend 11 2025⁄2026.pdf"
|
||||
},
|
||||
"/documents/Tischtennisregeln light.pdf": {
|
||||
"type": "application/pdf",
|
||||
"etag": "\"5177b-y/88q2+Y3RRechJMqWhse21KRdQ\"",
|
||||
"mtime": "2025-10-21T12:40:02.917Z",
|
||||
"mtime": "2025-10-21T12:43:32.659Z",
|
||||
"size": 333691,
|
||||
"path": "../public/documents/Tischtennisregeln light.pdf"
|
||||
},
|
||||
"/documents/satzung.pdf": {
|
||||
"type": "application/pdf",
|
||||
"etag": "\"5c7cf-L0A3nT8D24T9sD57FFbij3QRpzw\"",
|
||||
"mtime": "2025-10-21T12:40:02.917Z",
|
||||
"mtime": "2025-10-21T12:43:32.659Z",
|
||||
"size": 378831,
|
||||
"path": "../public/documents/satzung.pdf"
|
||||
},
|
||||
"/images/club_about_us.png": {
|
||||
"type": "image/png",
|
||||
"etag": "\"202e56-s4fLsHEgoAgKJeBRuI1qxPmqHV0\"",
|
||||
"mtime": "2025-10-21T12:43:32.659Z",
|
||||
"size": 2109014,
|
||||
"path": "../public/images/club_about_us.png"
|
||||
},
|
||||
"/data/mannschaften.csv": {
|
||||
"type": "text/csv; charset=utf-8",
|
||||
"etag": "\"858-l94GKn8Q0I5RQnhrM0ZPJsYUmcw\"",
|
||||
"mtime": "2025-10-21T12:43:32.659Z",
|
||||
"size": 2136,
|
||||
"path": "../public/data/mannschaften.csv"
|
||||
},
|
||||
"/data/spielsysteme.csv": {
|
||||
"type": "text/csv; charset=utf-8",
|
||||
"etag": "\"9bc-4npLrNHYClsD0TKV5vSifxitfV0\"",
|
||||
"mtime": "2025-10-21T12:43:32.659Z",
|
||||
"size": 2492,
|
||||
"path": "../public/data/spielsysteme.csv"
|
||||
},
|
||||
"/data/termine.csv": {
|
||||
"type": "text/csv; charset=utf-8",
|
||||
"etag": "\"2e8-sZtaHF6QRmOQHinTWOLAYRgo6xk\"",
|
||||
"mtime": "2025-10-21T12:43:32.659Z",
|
||||
"size": 744,
|
||||
"path": "../public/data/termine.csv"
|
||||
},
|
||||
"/data/vereinsmeisterschaften.csv": {
|
||||
"type": "text/csv; charset=utf-8",
|
||||
"etag": "\"989-X8AB+Zegy2xUbjDtbQcXhuuyBDQ\"",
|
||||
"mtime": "2025-10-21T12:43:32.659Z",
|
||||
"size": 2441,
|
||||
"path": "../public/data/vereinsmeisterschaften.csv"
|
||||
},
|
||||
"/_nuxt/0xufrPn-.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"b10-/isfm3dyRIVsEjgvcmL/XPZzoKo\"",
|
||||
"mtime": "2025-10-21T12:40:02.913Z",
|
||||
"mtime": "2025-10-21T12:43:32.655Z",
|
||||
"size": 2832,
|
||||
"path": "../public/_nuxt/0xufrPn-.js"
|
||||
},
|
||||
"/_nuxt/48ve60fm.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"557-e04q6bcr4Wja5BTiX/uCY9jcaOk\"",
|
||||
"mtime": "2025-10-21T12:40:02.913Z",
|
||||
"mtime": "2025-10-21T12:43:32.655Z",
|
||||
"size": 1367,
|
||||
"path": "../public/_nuxt/48ve60fm.js"
|
||||
},
|
||||
"/_nuxt/B-ZRDHEi.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"1744-1NcVDhC8iP9qzUGuLES4GLUFuNU\"",
|
||||
"mtime": "2025-10-21T12:40:02.913Z",
|
||||
"mtime": "2025-10-21T12:43:32.655Z",
|
||||
"size": 5956,
|
||||
"path": "../public/_nuxt/B-ZRDHEi.js"
|
||||
},
|
||||
"/_nuxt/B4mSF5Ac.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"185-hHs3mU4qOcQAkGQaPrUYGaG0yao\"",
|
||||
"mtime": "2025-10-21T12:40:02.913Z",
|
||||
"mtime": "2025-10-21T12:43:32.655Z",
|
||||
"size": 389,
|
||||
"path": "../public/_nuxt/B4mSF5Ac.js"
|
||||
},
|
||||
"/_nuxt/B4vdtHsr.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"32ab5-iZu7V37rEYCjapXaMYce7VaYkNk\"",
|
||||
"mtime": "2025-10-21T12:40:02.913Z",
|
||||
"size": 207541,
|
||||
"path": "../public/_nuxt/B4vdtHsr.js"
|
||||
},
|
||||
"/_nuxt/B8JkES4d.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"1860-WvKC8RdCe6cXCpB1GzY85pS096Q\"",
|
||||
"mtime": "2025-10-21T12:40:02.913Z",
|
||||
"mtime": "2025-10-21T12:43:32.655Z",
|
||||
"size": 6240,
|
||||
"path": "../public/_nuxt/B8JkES4d.js"
|
||||
},
|
||||
"/_nuxt/BJFIhPLo.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"16e9-yq0/LFZyeArARUVXQVCw9WWyEhs\"",
|
||||
"mtime": "2025-10-21T12:40:02.913Z",
|
||||
"mtime": "2025-10-21T12:43:32.655Z",
|
||||
"size": 5865,
|
||||
"path": "../public/_nuxt/BJFIhPLo.js"
|
||||
},
|
||||
"/_nuxt/BLJfiAQ_.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"1827-YlPmbtoIQqGYplyNk7VayRftNJ4\"",
|
||||
"mtime": "2025-10-21T12:40:02.913Z",
|
||||
"mtime": "2025-10-21T12:43:32.655Z",
|
||||
"size": 6183,
|
||||
"path": "../public/_nuxt/BLJfiAQ_.js"
|
||||
},
|
||||
"/_nuxt/BQ1JAN-t.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"4d4-D2c9LzMtu3t/oTdiDqO210OhOq0\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.655Z",
|
||||
"size": 1236,
|
||||
"path": "../public/_nuxt/BQ1JAN-t.js"
|
||||
},
|
||||
"/_nuxt/BTRcaDI_.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"e71-89mfqDG6lXCsNo8iythpikNOsNM\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.655Z",
|
||||
"size": 3697,
|
||||
"path": "../public/_nuxt/BTRcaDI_.js"
|
||||
},
|
||||
"/_nuxt/BVRiFo7f.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"dbf-bs5Lp4co8JtdiCR4NBZg2xEEpZE\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.655Z",
|
||||
"size": 3519,
|
||||
"path": "../public/_nuxt/BVRiFo7f.js"
|
||||
},
|
||||
"/_nuxt/BWWcyQAZ.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"685-pCeqOgBg8QXGBjOkvDQ5Miivcwk\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.655Z",
|
||||
"size": 1669,
|
||||
"path": "../public/_nuxt/BWWcyQAZ.js"
|
||||
},
|
||||
"/_nuxt/Be7mAYpw.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"13f6-nhcH7PpHXr9KCHrhZOBaqzyCANs\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.655Z",
|
||||
"size": 5110,
|
||||
"path": "../public/_nuxt/Be7mAYpw.js"
|
||||
},
|
||||
"/_nuxt/BkTrhdjg.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"81f-bXeZaccLlH7cSuSEhEG6Pk4vEzY\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.655Z",
|
||||
"size": 2079,
|
||||
"path": "../public/_nuxt/BkTrhdjg.js"
|
||||
},
|
||||
"/_nuxt/BneZCqgq.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"1a9f-Hr2fThSa8cJCoHMhFwvPAqgbLZg\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.655Z",
|
||||
"size": 6815,
|
||||
"path": "../public/_nuxt/BneZCqgq.js"
|
||||
},
|
||||
"/_nuxt/BpG5pLwY.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"16e6-iqlwalhSHX6bpWAAiam6nLgiuVE\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.655Z",
|
||||
"size": 5862,
|
||||
"path": "../public/_nuxt/BpG5pLwY.js"
|
||||
},
|
||||
"/_nuxt/BteKZQ9T.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"1ea-kmrGdt5SPmt15EiBI7kR9gXMQM0\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 490,
|
||||
"path": "../public/_nuxt/BteKZQ9T.js"
|
||||
},
|
||||
"/_nuxt/C0jrEzGC.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"5f0-uJRUZKhjlZl/nyiPAoO6Z/4LAHg\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 1520,
|
||||
"path": "../public/_nuxt/C0jrEzGC.js"
|
||||
},
|
||||
"/_nuxt/C5SyyWEb.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"2a5-06iX+CL3i0ysaqW9nu7Eg2YzDhQ\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 677,
|
||||
"path": "../public/_nuxt/C5SyyWEb.js"
|
||||
},
|
||||
"/_nuxt/C8kQt0fa.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"197-7X99z1xphxry8OnMwU7Ofs/uE0Q\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 407,
|
||||
"path": "../public/_nuxt/C8kQt0fa.js"
|
||||
},
|
||||
"/_nuxt/CEVega_m.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"354a-6SXBToAo3Ni4tHpwgctJinnoK5o\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"size": 13642,
|
||||
"path": "../public/_nuxt/CEVega_m.js"
|
||||
},
|
||||
"/_nuxt/CHQH_CwJ.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"1168-mBOIwVjM5LsxIx13Cs7oT3+LJ+k\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 4456,
|
||||
"path": "../public/_nuxt/CHQH_CwJ.js"
|
||||
},
|
||||
"/_nuxt/CKjxMu8n.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"faa-TEO7v2i4TXlLpDUt7LGSNlcm+Ew\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 4010,
|
||||
"path": "../public/_nuxt/CKjxMu8n.js"
|
||||
},
|
||||
"/_nuxt/CN7ivzv2.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"1daf-KIlbDOIuT3G/zezUF5LO1f52Vtc\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 7599,
|
||||
"path": "../public/_nuxt/CN7ivzv2.js"
|
||||
},
|
||||
"/_nuxt/CNvcEwxd.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"11e7-FT5oxPyA+c2iUA/l/5Ieuxws3Pc\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 4583,
|
||||
"path": "../public/_nuxt/CNvcEwxd.js"
|
||||
},
|
||||
"/_nuxt/CUVZhO0q.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"dfc-1G2To51pfChtkPrr4l+DG3FkOHk\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 3580,
|
||||
"path": "../public/_nuxt/CUVZhO0q.js"
|
||||
},
|
||||
"/_nuxt/CUq_0rkE.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"12d-JV4KW1fgT85/V3Ap13X4q2h9U3g\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 301,
|
||||
"path": "../public/_nuxt/CUq_0rkE.js"
|
||||
},
|
||||
"/_nuxt/CWEkTB1z.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"198-ej4DRqc3/5nSwWU3c6wbOD3Ib9w\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 408,
|
||||
"path": "../public/_nuxt/CWEkTB1z.js"
|
||||
},
|
||||
"/_nuxt/Cb5SbJ0y.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"1d90-K3fsAPMrslrofiGV21WL0Fu94+E\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 7568,
|
||||
"path": "../public/_nuxt/Cb5SbJ0y.js"
|
||||
},
|
||||
"/_nuxt/CkzaQq3X.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"17d-+xKrHjeww4bpFFkkjUNLD/ebn5A\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 381,
|
||||
"path": "../public/_nuxt/CkzaQq3X.js"
|
||||
},
|
||||
"/_nuxt/CrCcIvVp.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"274-9U7hEMtgHqdnQopnKeJsBKqKyKw\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 628,
|
||||
"path": "../public/_nuxt/CrCcIvVp.js"
|
||||
},
|
||||
"/_nuxt/Ctsomia6.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"372a-KQDPrGTdlSLojA2451YguGQdPus\"",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 14122,
|
||||
"path": "../public/_nuxt/Ctsomia6.js"
|
||||
},
|
||||
"/_nuxt/Cx4UcKGu.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"19d-5AMD0EnFEjOkM3qKDpC/NZZzwDI\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 413,
|
||||
"path": "../public/_nuxt/Cx4UcKGu.js"
|
||||
},
|
||||
"/_nuxt/Czdc6-TI.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"165-EMJ/yP2qajGIw0CL3y+L/hvMM/8\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 357,
|
||||
"path": "../public/_nuxt/Czdc6-TI.js"
|
||||
},
|
||||
"/_nuxt/D54FZQPM.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"1556-GtYLKNALVpyOhSr1LrAIs5gIV7I\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 5462,
|
||||
"path": "../public/_nuxt/D54FZQPM.js"
|
||||
},
|
||||
"/_nuxt/DAACT36i.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"1f9-dVOk5jAwb0VlMLJevIcT+s2NTgM\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 505,
|
||||
"path": "../public/_nuxt/DAACT36i.js"
|
||||
},
|
||||
"/_nuxt/DIYnFFZd.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"3518-Z2dO9ejuo/PHmRggMKxl1caQ7yo\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 13592,
|
||||
"path": "../public/_nuxt/DIYnFFZd.js"
|
||||
},
|
||||
"/_nuxt/DK8ar2Vw.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"bf0-gt2eLpxqF9V/T1JrusLBdWlTOB4\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 3056,
|
||||
"path": "../public/_nuxt/DK8ar2Vw.js"
|
||||
},
|
||||
"/_nuxt/DQ89_Lrx.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"1bdb-FX6FWYmVTmAWWkO9E2O91ImJoTI\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 7131,
|
||||
"path": "../public/_nuxt/DQ89_Lrx.js"
|
||||
},
|
||||
"/_nuxt/DaSgy0Cl.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"11f-soKnh1qfNJj5nvt+IcgQXYvg/z4\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 287,
|
||||
"path": "../public/_nuxt/DaSgy0Cl.js"
|
||||
},
|
||||
"/_nuxt/DaUHoOti.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"177f-xSuV2n3wrsWDBysy5o9XsakrXDw\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 6015,
|
||||
"path": "../public/_nuxt/DaUHoOti.js"
|
||||
},
|
||||
"/_nuxt/DkeYb0_S.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"1ce-xiaAbRvqQ+zffTXF3Gc7rq14R0U\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 462,
|
||||
"path": "../public/_nuxt/DkeYb0_S.js"
|
||||
},
|
||||
"/_nuxt/DlAUqK2U.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"5b-eFCz/UrraTh721pgAl0VxBNR1es\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 91,
|
||||
"path": "../public/_nuxt/DlAUqK2U.js"
|
||||
},
|
||||
"/_nuxt/Dorx0xsu.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"32ab5-Fg5TmfBpPFRjzi8hbM9/+XN4yBo\"",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 207541,
|
||||
"path": "../public/_nuxt/Dorx0xsu.js"
|
||||
},
|
||||
"/_nuxt/DuCL6zMI.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"16a2-gJGadr4jKYMWO0Im01z6CSn+n1E\"",
|
||||
"mtime": "2025-10-21T12:40:02.914Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 5794,
|
||||
"path": "../public/_nuxt/DuCL6zMI.js"
|
||||
},
|
||||
"/_nuxt/H0vOWBHN.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"2029-KNpFGDGtz8iRFY43F+s7ByzEpkM\"",
|
||||
"mtime": "2025-10-21T12:40:02.915Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 8233,
|
||||
"path": "../public/_nuxt/H0vOWBHN.js"
|
||||
},
|
||||
"/_nuxt/Harheimer TC.CKfYAfp1.svg": {
|
||||
"type": "image/svg+xml",
|
||||
"etag": "\"1d2535-Tx2lTuuFn2hBqGZOnDan3/OdRU0\"",
|
||||
"mtime": "2025-10-21T12:40:02.915Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 1910069,
|
||||
"path": "../public/_nuxt/Harheimer TC.CKfYAfp1.svg"
|
||||
},
|
||||
"/_nuxt/Qy3ajxTk.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"13f-LgrH17St2xFg+RPGvT3uJRaRfFw\"",
|
||||
"mtime": "2025-10-21T12:40:02.915Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 319,
|
||||
"path": "../public/_nuxt/Qy3ajxTk.js"
|
||||
},
|
||||
"/_nuxt/RGsuuLA3.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"10bb-640PtonCPMgqRn3wO6U3UtHYmDM\"",
|
||||
"mtime": "2025-10-21T12:40:02.915Z",
|
||||
"mtime": "2025-10-21T12:43:32.656Z",
|
||||
"size": 4283,
|
||||
"path": "../public/_nuxt/RGsuuLA3.js"
|
||||
},
|
||||
"/_nuxt/SRZHqrjk.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"383-+7H4gpbdqNaMFlhjcQOVxgmex04\"",
|
||||
"mtime": "2025-10-21T12:40:02.915Z",
|
||||
"mtime": "2025-10-21T12:43:32.657Z",
|
||||
"size": 899,
|
||||
"path": "../public/_nuxt/SRZHqrjk.js"
|
||||
},
|
||||
"/_nuxt/XZ6RV9KH.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"175-xr1poEaGS4yjOp907AsRAr6XHLI\"",
|
||||
"mtime": "2025-10-21T12:40:02.915Z",
|
||||
"mtime": "2025-10-21T12:43:32.657Z",
|
||||
"size": 373,
|
||||
"path": "../public/_nuxt/XZ6RV9KH.js"
|
||||
},
|
||||
"/_nuxt/YJHbYJtA.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"19f-nQw578pUen9o8yYaMA8Bwag6xho\"",
|
||||
"mtime": "2025-10-21T12:40:02.915Z",
|
||||
"mtime": "2025-10-21T12:43:32.657Z",
|
||||
"size": 415,
|
||||
"path": "../public/_nuxt/YJHbYJtA.js"
|
||||
},
|
||||
"/_nuxt/ZrOCUSmD.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"ee2-knvq//8tl4tcmRjFy6nWAy0dRBk\"",
|
||||
"mtime": "2025-10-21T12:40:02.915Z",
|
||||
"mtime": "2025-10-21T12:43:32.657Z",
|
||||
"size": 3810,
|
||||
"path": "../public/_nuxt/ZrOCUSmD.js"
|
||||
},
|
||||
"/_nuxt/entry.CjazO3pS.css": {
|
||||
"/_nuxt/entry.FYEsgUy-.css": {
|
||||
"type": "text/css; charset=utf-8",
|
||||
"etag": "\"b495-99NyKsrA+ieGJrJj6RCFdvkcXBo\"",
|
||||
"mtime": "2025-10-21T12:40:02.915Z",
|
||||
"size": 46229,
|
||||
"path": "../public/_nuxt/entry.CjazO3pS.css"
|
||||
"etag": "\"b4af-YS/KMJ2qaPGgn26xRUvdfm85tP8\"",
|
||||
"mtime": "2025-10-21T12:43:32.657Z",
|
||||
"size": 46255,
|
||||
"path": "../public/_nuxt/entry.FYEsgUy-.css"
|
||||
},
|
||||
"/_nuxt/error-404.CbXQcqJW.css": {
|
||||
"type": "text/css; charset=utf-8",
|
||||
"etag": "\"97e-Ty5bTTSEudJkO/DsGUoIf37xYxc\"",
|
||||
"mtime": "2025-10-21T12:40:02.915Z",
|
||||
"mtime": "2025-10-21T12:43:32.657Z",
|
||||
"size": 2430,
|
||||
"path": "../public/_nuxt/error-404.CbXQcqJW.css"
|
||||
},
|
||||
"/_nuxt/error-500.L485xXhD.css": {
|
||||
"type": "text/css; charset=utf-8",
|
||||
"etag": "\"773-jNt1QdCa+iqaSZb1mv/IQWC5p6w\"",
|
||||
"mtime": "2025-10-21T12:40:02.915Z",
|
||||
"mtime": "2025-10-21T12:43:32.657Z",
|
||||
"size": 1907,
|
||||
"path": "../public/_nuxt/error-500.L485xXhD.css"
|
||||
},
|
||||
"/_nuxt/index.BYYJS8tV.css": {
|
||||
"type": "text/css; charset=utf-8",
|
||||
"etag": "\"167-3j4dZVXlcTPVZDB5pP2uXGX7/QQ\"",
|
||||
"mtime": "2025-10-21T12:40:02.915Z",
|
||||
"mtime": "2025-10-21T12:43:32.657Z",
|
||||
"size": 359,
|
||||
"path": "../public/_nuxt/index.BYYJS8tV.css"
|
||||
},
|
||||
"/_nuxt/jVj3QaoK.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"196-xWXv220Sy3kJeouwzrQ/gnXllWQ\"",
|
||||
"mtime": "2025-10-21T12:40:02.915Z",
|
||||
"mtime": "2025-10-21T12:43:32.657Z",
|
||||
"size": 406,
|
||||
"path": "../public/_nuxt/jVj3QaoK.js"
|
||||
},
|
||||
"/_nuxt/rZgF5GAr.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"2163-F4ycM3bgzLo6kVIU09LeGUWE8SI\"",
|
||||
"mtime": "2025-10-21T12:40:02.915Z",
|
||||
"mtime": "2025-10-21T12:43:32.657Z",
|
||||
"size": 8547,
|
||||
"path": "../public/_nuxt/rZgF5GAr.js"
|
||||
},
|
||||
"/_nuxt/tnJjxGC6.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"abb-4G3/6bCNUQzUVLLE5tcXv6Rh+gc\"",
|
||||
"mtime": "2025-10-21T12:40:02.915Z",
|
||||
"mtime": "2025-10-21T12:43:32.657Z",
|
||||
"size": 2747,
|
||||
"path": "../public/_nuxt/tnJjxGC6.js"
|
||||
},
|
||||
"/_nuxt/y9BE7jdd.js": {
|
||||
"type": "text/javascript; charset=utf-8",
|
||||
"etag": "\"d8b-/UzKIx4Kl1VnbQibGZzrIbVIyG4\"",
|
||||
"mtime": "2025-10-21T12:40:02.915Z",
|
||||
"mtime": "2025-10-21T12:43:32.657Z",
|
||||
"size": 3467,
|
||||
"path": "../public/_nuxt/y9BE7jdd.js"
|
||||
},
|
||||
"/images/club_about_us.png": {
|
||||
"type": "image/png",
|
||||
"etag": "\"202e56-s4fLsHEgoAgKJeBRuI1qxPmqHV0\"",
|
||||
"mtime": "2025-10-21T12:40:02.917Z",
|
||||
"size": 2109014,
|
||||
"path": "../public/images/club_about_us.png"
|
||||
"/spielplaene/1. Mannschaft 2025⁄2026.pdf": {
|
||||
"type": "application/pdf",
|
||||
"etag": "\"64c6-+477M+gD/spwpWR9NO/tMJ/inCc\"",
|
||||
"mtime": "2025-10-21T12:43:32.659Z",
|
||||
"size": 25798,
|
||||
"path": "../public/spielplaene/1. Mannschaft 2025⁄2026.pdf"
|
||||
},
|
||||
"/spielplaene/2. Mannschaft 2025⁄2026.pdf": {
|
||||
"type": "application/pdf",
|
||||
"etag": "\"5bfa-DRJMHLV15iss67lEISoGqSYmZjE\"",
|
||||
"mtime": "2025-10-21T12:43:32.659Z",
|
||||
"size": 23546,
|
||||
"path": "../public/spielplaene/2. Mannschaft 2025⁄2026.pdf"
|
||||
},
|
||||
"/spielplaene/3. Mannschaft 2025⁄2026.pdf": {
|
||||
"type": "application/pdf",
|
||||
"etag": "\"7447-w933CPQdXhkWJ2AZOVdY0UgJnPo\"",
|
||||
"mtime": "2025-10-21T12:43:32.660Z",
|
||||
"size": 29767,
|
||||
"path": "../public/spielplaene/3. Mannschaft 2025⁄2026.pdf"
|
||||
},
|
||||
"/spielplaene/4. Mannschaft 2025⁄2026.pdf": {
|
||||
"type": "application/pdf",
|
||||
"etag": "\"6a9b-4TPGn1yQlFUMRj7oB43SN//Np9o\"",
|
||||
"mtime": "2025-10-21T12:43:32.660Z",
|
||||
"size": 27291,
|
||||
"path": "../public/spielplaene/4. Mannschaft 2025⁄2026.pdf"
|
||||
},
|
||||
"/spielplaene/5. Mannschaft 2025⁄2026.pdf": {
|
||||
"type": "application/pdf",
|
||||
"etag": "\"6523-5VUfCMaoiNhcwHhptHHTVJ3lSwQ\"",
|
||||
"mtime": "2025-10-21T12:43:32.660Z",
|
||||
"size": 25891,
|
||||
"path": "../public/spielplaene/5. Mannschaft 2025⁄2026.pdf"
|
||||
},
|
||||
"/spielplaene/Jugend 11 2025⁄2026.pdf": {
|
||||
"type": "application/pdf",
|
||||
"etag": "\"52e9-3Rrk9UKUxPh80pBJ0w9oLVbe5dA\"",
|
||||
"mtime": "2025-10-21T12:43:32.660Z",
|
||||
"size": 21225,
|
||||
"path": "../public/spielplaene/Jugend 11 2025⁄2026.pdf"
|
||||
},
|
||||
"/_nuxt/builds/latest.json": {
|
||||
"type": "application/json",
|
||||
"etag": "\"47-Q/un9lUHfrfQ6DCWcpGBKE3OC5g\"",
|
||||
"mtime": "2025-10-21T12:40:02.907Z",
|
||||
"etag": "\"47-druJP0NXWHMSEA+j3XoLHSpdyoM\"",
|
||||
"mtime": "2025-10-21T12:43:32.649Z",
|
||||
"size": 71,
|
||||
"path": "../public/_nuxt/builds/latest.json"
|
||||
},
|
||||
"/_nuxt/builds/meta/a70ec7ce-a432-4ca7-a120-b9660be7b615.json": {
|
||||
"/_nuxt/builds/meta/fded8fe3-e37f-48d2-bfc6-ef86564402c9.json": {
|
||||
"type": "application/json",
|
||||
"etag": "\"8b-wVqsIxIKIT6NqBe4rkmSaYHnNwk\"",
|
||||
"mtime": "2025-10-21T12:40:02.905Z",
|
||||
"etag": "\"8b-peUtJxPRasl19+a06WcMZBWlpGw\"",
|
||||
"mtime": "2025-10-21T12:43:32.645Z",
|
||||
"size": 139,
|
||||
"path": "../public/_nuxt/builds/meta/a70ec7ce-a432-4ca7-a120-b9660be7b615.json"
|
||||
"path": "../public/_nuxt/builds/meta/fded8fe3-e37f-48d2-bfc6-ef86564402c9.json"
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@@ -272,7 +272,7 @@ async function renderInlineStyles(usedModules) {
|
||||
|
||||
const renderSSRHeadOptions = {"omitLineBreaks":true};
|
||||
|
||||
const entryFileName = "B4vdtHsr.js";
|
||||
const entryFileName = "Dorx0xsu.js";
|
||||
|
||||
globalThis.__buildAssetsURL = buildAssetsURL;
|
||||
globalThis.__publicAssetsURL = publicAssetsURL;
|
||||
|
||||
@@ -332,7 +332,10 @@ const canEdit = computed(() => {
|
||||
})
|
||||
|
||||
const canViewContactData = computed(() => {
|
||||
return authStore.role === 'vorstand'
|
||||
// Explicitly check for 'vorstand' role only
|
||||
const role = authStore.role
|
||||
console.log('Current role:', role, 'Can view contact:', role === 'vorstand')
|
||||
return role === 'vorstand'
|
||||
})
|
||||
|
||||
const loadMembers = async () => {
|
||||
|
||||
Reference in New Issue
Block a user