news-analyze/server/api/download/news-article-archive.json.ts
吳元皓 61f56a8c0a
Some checks are pending
Build and Push Beta Image / build-and-push (push) Waiting to run
Add archiving system & pushing news org.
2025-06-12 00:04:25 +08:00

11 lines
381 B
TypeScript

import sql from "~/server/components/postgres";
export default defineEventHandler(async (event) => {
const articles = await sql`
SELECT * FROM news_articles;
`;
setHeaders(event, {
"Content-Type": "application/json",
"Content-Disposition": `attachment; filename="news-articles-export-${new Date().toISOString().split("T")[0]}.json"`,
});
return articles;
});