All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
- Structure par section : /numerique, /economique, /citoyenne (plus de /gestation) - Chaque section a index + sous-pages avec contenu YAML administrable - API content supporte les chemins imbriqués ([...path]) - Admin : liste des pages + éditeur par section - Page /economique : monnaie libre (picto Ğ1), modèle éco, productions collectives, commande livre - Page /citoyenne : decision (CTA Glibredecision), tarifs-eau (CTA SejeteralO) - BookActions : composant partagé (player, PDF, chapitres, commande) sur home, eco et modele-eco - GrateWizard remonté dans la section économique de la home - Palette été par défaut, choix persisté en localStorage - Fix lisibilité été (text-white/65 + variables CSS) - Shadoks thématiques sur toutes les pages (8-10 par page, métiers variés) - Redirections 301 : /gestation/*, /modele-eco/*, /decision, /lire/* - README, CONTRIBUTING, CLAUDE.md mis à jour Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
22 lines
677 B
TypeScript
22 lines
677 B
TypeScript
import { mkdir } from 'node:fs/promises'
|
|
import { join, dirname } from 'node:path'
|
|
|
|
export default defineEventHandler(async (event) => {
|
|
const path = getRouterParam(event, 'path')
|
|
|
|
if (!path || !/^[a-z0-9-/]+$/.test(path)) {
|
|
throw createError({ statusCode: 400, statusMessage: 'Invalid page path' })
|
|
}
|
|
|
|
const body = await readBody(event)
|
|
const relativePath = `pages/${path}.yml`
|
|
|
|
// Ensure subdirectory exists
|
|
const fullPath = join(process.cwd(), 'site', relativePath)
|
|
await mkdir(dirname(fullPath), { recursive: true })
|
|
|
|
await writeYaml(relativePath, body)
|
|
gitSyncContent(`Mise à jour page ${path}`, [`site/${relativePath}`])
|
|
return { ok: true }
|
|
})
|