27 lines
769 B
TypeScript
27 lines
769 B
TypeScript
export async function POST(req: Request) {
|
|
const body = await req.text();
|
|
const baseUrl = process.env.LEDGERONE_API_URL ?? "http://localhost:3051";
|
|
const res = await fetch(`${baseUrl}/api/auth/register`, {
|
|
method: "POST",
|
|
headers: { "Content-Type": "application/json" },
|
|
body
|
|
});
|
|
const payload = await res.text();
|
|
return new Response(payload, {
|
|
status: res.status,
|
|
headers: {
|
|
"Content-Type": res.headers.get("content-type") ?? "application/json"
|
|
}
|
|
});
|
|
}
|
|
|
|
export async function GET() {
|
|
return new Response(
|
|
JSON.stringify({
|
|
ok: true,
|
|
message: "POST JSON { email, password } to /api/auth/register."
|
|
}),
|
|
{ status: 200, headers: { "Content-Type": "application/json" } }
|
|
);
|
|
}
|