Files
hoppscotch/packages/hoppscotch-backend/src/auth/dto/verify-magic.dto.ts
2023-02-01 14:58:31 +05:30

6 lines
131 B
TypeScript

// Inputs to verify and sign a user in via magic-link
export class VerifyMagicDto {
deviceIdentifier: string;
token: string;
}