refactor(nestjs): auth module

This commit is contained in:
Ahmed Bouhuolia
2025-03-31 13:49:57 +02:00
parent ab717b96ac
commit 88f66f1c1c
62 changed files with 251 additions and 144 deletions

View File

@@ -26,8 +26,8 @@ export class AuthenticationApplication {
* @param {string} email - Email address.
* @param {string} password - Password.
*/
public async signIn(signinDto: AuthSigninDto) {
return this.authSigninService.signIn(signinDto);
public async signIn(email: string, password: string) {
return this.authSigninService.signin(email, password);
}
/**