shellphone.app/app/utils/authenticator.server.ts

12 lines
366 B
TypeScript
Raw Normal View History

2022-05-14 10:22:06 +00:00
import { Authenticator } from "remix-auth";
import { FormStrategy } from "remix-auth-form";
import { sessionStorage } from "./session.server";
import { type SessionUser, login } from "./auth.server";
const authenticator = new Authenticator<SessionUser>(sessionStorage);
authenticator.use(new FormStrategy(login), "email-password");
export default authenticator;