mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 07:41:02 +08:00
Updates UI components and gitignore rules for database backups, adds Facebook links to news org window, and improves desktop window title handling.
15 lines
478 B
TypeScript
15 lines
478 B
TypeScript
export default defineEventHandler(async (event) => {
|
|
const slug = getRouterParam(event, "slug");
|
|
const body = await readBody(event);
|
|
return {
|
|
body: body,
|
|
title: "News Org 1",
|
|
slug: "taisounds",
|
|
website: "https://yuanhau.com",
|
|
description: "wah wah wah wah wah wah I dont fucking care",
|
|
facebook: "https://www.facebook.csdkc",
|
|
logoUrl:
|
|
"https://cdn.discordapp.com/avatars/918723093646684180/4eecc27ac05ee8a701fa167808610c7a.jpg",
|
|
};
|
|
});
|