({
user,
loginMethod,
isNewUser,
}: {
user: User;
loginMethod: User["authenticationMethod"];
isNewUser: boolean;
})
| 2 | import { telemetry } from "./telemetry.server"; |
| 3 | |
| 4 | export async function postAuthentication({ |
| 5 | user, |
| 6 | loginMethod, |
| 7 | isNewUser, |
| 8 | }: { |
| 9 | user: User; |
| 10 | loginMethod: User["authenticationMethod"]; |
| 11 | isNewUser: boolean; |
| 12 | }) { |
| 13 | telemetry.user.identify({ user, isNewUser }); |
| 14 | } |
no test coverage detected
searching dependent graphs…