mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-05 06:09:16 +01:00
25 lines
716 B
TypeScript
25 lines
716 B
TypeScript
import { headers } from "next/headers";
|
|
import type { DefaultSession } from "@auth/core/types";
|
|
|
|
import type { ColorScheme, GroupPermissionKey } from "@homarr/definitions";
|
|
|
|
import { createConfiguration } from "./configuration";
|
|
|
|
export type { Session } from "next-auth";
|
|
|
|
declare module "next-auth" {
|
|
interface Session {
|
|
user: {
|
|
id: string;
|
|
permissions: GroupPermissionKey[];
|
|
colorScheme: ColorScheme;
|
|
} & DefaultSession["user"];
|
|
}
|
|
}
|
|
|
|
export * from "./security";
|
|
|
|
export const createHandlers = (isCredentialsRequest: boolean) => createConfiguration(isCredentialsRequest, headers());
|
|
|
|
export { getSessionFromTokenAsync as getSessionFromToken, sessionTokenCookieName } from "./session";
|