Files
librodrome/server/api/admin/content/config.put.ts
2026-02-20 12:55:10 +01:00

6 lines
164 B
TypeScript

export default defineEventHandler(async (event) => {
const body = await readBody(event)
await writeYaml('librodrome.config.yml', body)
return { ok: true }
})