mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-11 09:28:40 +00:00
15 lines
294 B
TypeScript
15 lines
294 B
TypeScript
import type { User } from "~/models/user.server";
|
|
import { singleton } from "~/utils/singleton";
|
|
|
|
export async function postAuthentication({
|
|
user,
|
|
loginMethod,
|
|
isNewUser,
|
|
}: {
|
|
user: User;
|
|
loginMethod: User["authenticationMethod"];
|
|
isNewUser: boolean;
|
|
}) {
|
|
// console.log(user);
|
|
}
|