core/apps/webapp/app/services/postAuth.server.ts
Harshith Mullapudi cc3eb36941 Bump: new version
2025-06-16 21:51:14 +05:30

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);
}