mirror of
https://github.com/fosrl/pangolin.git
synced 2025-07-02 01:54:53 +02:00
11 lines
234 B
TypeScript
11 lines
234 B
TypeScript
|
import { cookies } from "next/headers";
|
||
|
|
||
|
export function authCookieHeader() {
|
||
|
const sessionId = cookies().get("session")?.value ?? null;
|
||
|
return {
|
||
|
headers: {
|
||
|
Cookie: `session=${sessionId}`
|
||
|
}
|
||
|
}
|
||
|
}
|