-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
register with password,login and logout API #21
Conversation
This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation. |
src/modules/auth/dto/register.dto.ts
Outdated
// password: string; | ||
@ApiProperty({}) | ||
@IsNotEmpty({ message: 'Password is required' }) | ||
@MinLength(8, { message: 'Password must be at least 8 characters long' }) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vishnuvinay89 Remove Password validation only keep minLength 4 characters, use below code
@ApiProperty({})
@IsOptional()
@MinLength(4, { message: 'Password must be at least 4 characters long' })
password: string;
Quality Gate failedFailed conditions |
* register with password,login and logout API * changed password length * Update wallet_dev.yml * Update uat-wallet.yml * register with password,login and logout API (#21) (#22) * register with password,login and logout API * changed password length Co-authored-by: vishnuvinay89 <vishnu.vinay@tekditechnologies.com> * Update uat-wallet.yml * Update wallet_dev.yml * code changes for preview of upload/fetch document --------- Co-authored-by: Sudeep Ratnaparkhe <58525720+sudeeppr1998@users.noreply.github.com> Co-authored-by: Manoj L <manojLondhe@users.noreply.github.com> Co-authored-by: Manoj Nath <66711855+ManojNathIC@users.noreply.github.com>
No description provided.