refactoring

This commit is contained in:
2024-07-18 16:14:34 +02:00
parent e0377aeb00
commit 7312ab632c
2 changed files with 154 additions and 166 deletions
+2 -12
View File
@@ -141,19 +141,9 @@ export async function tryCreateAttachment(request: Request) {
export async function tryFetchAttachments(request: Request) {
await Post.sync();
const foundPosts = await Post.findAll({
include: [
{
association: Post.associations.user,
attributes: { exclude: ["password", "createdAt", "updatedAt"] },
},
{
association: Post.associations.postTags,
},
],
});
const foundAttachments = await Attachment.findAll();
return new Response(JSON.stringify(foundPosts), { status: 200 });
return new Response(JSON.stringify(foundAttachments), { status: 200 });
}
export async function GET(request: Request) {