mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-20 06:40:31 +00:00
refactor(nestjs): auth module
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user