chore: captialized DTO names

This commit is contained in:
Balu Babu
2023-02-01 14:58:31 +05:30
parent 5c5ab5bad5
commit 4ca762344c
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
// Inputs to initiate Magic-Link auth flow
export class signInMagicDto {
export class SignInMagicDto {
email: string;
}

View File

@@ -1,5 +1,5 @@
// Inputs to verify and sign a user in via magic-link
export class verifyMagicDto {
export class VerifyMagicDto {
deviceIdentifier: string;
token: string;
}