chore(core): track otp usage (#10248)

close AF-2235
This commit is contained in:
forehalo
2025-02-18 10:10:27 +00:00
parent cb15d48b82
commit cd00f06b77
3 changed files with 6 additions and 5 deletions
@@ -141,7 +141,7 @@ export const SignInWithEmailStep = ({
setIsVerifying(true);
try {
await authService.signInMagicLink(email, otp);
await authService.signInMagicLink(email, otp, false);
} catch (e) {
if (e instanceof BackendError) {
notify.error({
@@ -109,7 +109,8 @@ export class AuthService extends Service {
}
}
async signInMagicLink(email: string, token: string) {
async signInMagicLink(email: string, token: string, byLink = true) {
const method = byLink ? 'magic-link' : 'otp';
try {
await this.fetchService.fetch('/api/auth/magic-link', {
method: 'POST',
@@ -120,10 +121,10 @@ export class AuthService extends Service {
});
this.session.revalidate();
track.$.$.auth.signedIn({ method: 'magic-link' });
track.$.$.auth.signedIn({ method });
} catch (e) {
track.$.$.auth.signInFail({
method: 'magic-link',
method,
reason: e instanceof BackendError ? e.originError.name : 'unknown',
});
throw e;
+1 -1
View File
@@ -439,7 +439,7 @@ type SplitViewActionControlType = 'menu' | 'indicator';
type SplitViewActionType = 'open' | 'close' | 'move' | 'closeOthers';
type AuthArgs = {
method: 'password' | 'magic-link' | 'oauth';
method: 'password' | 'magic-link' | 'oauth' | 'otp';
provider?: string;
};