## Deskripsi:
- Edit map
- Sinkronisasi dengan data portofolio
### No Issue
This commit is contained in:
2024-08-15 17:46:13 +08:00
parent 059cbe6b0f
commit 34031355fe
59 changed files with 1410 additions and 342 deletions

View File

@@ -10,11 +10,9 @@ import yaml from "yaml";
const config = yaml.parse(fs.readFileSync("config.yaml").toString());
export async function POST(req: Request) {
if (req.method === "POST") {
const body = await req.json();
const data = await prisma.user.findUnique({
where: {
nomor: body.nomor,
@@ -27,7 +25,7 @@ export async function POST(req: Request) {
},
});
myConsole(data)
myConsole(data);
if (!data) return NextResponse.json({ status: 404 });
@@ -38,7 +36,7 @@ export async function POST(req: Request) {
username: data.username,
}),
{
password: (await config.server.password),
password: await config.server.password,
}
);
@@ -48,7 +46,7 @@ export async function POST(req: Request) {
maxAge: 60 * 60 * 24 * 7,
});
revalidatePath("/dev/home")
revalidatePath("/dev/home");
return NextResponse.json({ status: 200, data });
}