mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-30 03:09:19 +01:00
* fix: credentials login not working cause of cookie secure flag not possible for http * chore: add missing comment * fix: lint issue
27 lines
847 B
TypeScript
27 lines
847 B
TypeScript
import { headers } from "next/headers";
|
|
import type { DefaultSession } from "@auth/core/types";
|
|
|
|
import type { ColorScheme, GroupPermissionKey, SupportedAuthProvider } 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";
|
|
|
|
// See why it's unknown in the [...nextauth]/route.ts file
|
|
export const createHandlers = (provider: SupportedAuthProvider | "unknown", useSecureCookies: boolean) =>
|
|
createConfiguration(provider, headers(), useSecureCookies);
|
|
|
|
export { getSessionFromTokenAsync as getSessionFromToken, sessionTokenCookieName } from "./session";
|