cmann50

Results 1 issues of cmann50

Thanks for putting this example together. This line is comparing the password in the database against itself, so it will always assume credentials are valid. https://github.com/bashleigh/nestjs-blog/blob/fbacc0337ef3ecbd367b36369440929ccf517d31/src/auth/auth.service.ts#L25 ```typescript if (!await this.userService.compareHash(auth.password,...

bug