news-analyze/server/api/contentcheck/kidunfriendlycontent.ts
吳元皓 84c176ac09 Made some tools for basic users & also may or may not added a bunch of
nono keywords into the kidunfriendlycontent.json file. Oh, and most of
it is sourced from you guessed it LINE Today & Taiwan's garbage news
corps >_<
2025-05-19 22:59:55 +08:00

22 lines
380 B
TypeScript

import sql from "~/server/components/postgres";
export default defineEventHandler(async (event) => {
return {
words: [
"尺度太小",
"比基尼",
"無罩",
"脫褲",
"裸露",
"露豐",
"V辣",
"激露",
"E級曲線",
"放0肩",
"透視裝",
"性侵",
"裸照",
"性感",
],
};
});