refactoring
This commit is contained in:
parent
e0377aeb00
commit
7312ab632c
@ -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) {
|
||||
|
||||
@ -111,10 +111,10 @@ async function seedPosts(qif: SqliteQueryInterface<SqliteDialect>) {
|
||||
where: {
|
||||
readableIdentifier: "blog",
|
||||
},
|
||||
}).then((e) =>
|
||||
e
|
||||
? e
|
||||
: Project.create({
|
||||
}).then(
|
||||
(project) =>
|
||||
project ||
|
||||
Project.create({
|
||||
name: "General Blog",
|
||||
readableIdentifier: "blog",
|
||||
})
|
||||
@ -174,9 +174,7 @@ export async function GET(request: Request) {
|
||||
|
||||
return new Response(
|
||||
JSON.stringify({
|
||||
test: await queryInterface
|
||||
.describeTable("Posts")
|
||||
.then((t) => t),
|
||||
test: await queryInterface.describeTable("Posts").then((t) => t),
|
||||
}),
|
||||
{
|
||||
status: 200,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user