added complete api functionality

This commit is contained in:
JBB0807 2025-04-29 12:01:10 -07:00
parent 956ede5619
commit 24bd570795
13 changed files with 205 additions and 107 deletions

View file

@ -26,7 +26,7 @@ app.use(passport.session());
app.use(
cors({
origin: process.env.ACCEPTED_ORIGINS.split(","),
methods: "GET",
methods: ["GET", "POST"],
credentials: true,
})
)