Merge pull request #9 from ivanalglave/password-mail
feat: password mailed to user after signup using mailgun
No related branches found
No related tags found
Showing
- package-lock.json 5623 additions, 276 deletionspackage-lock.json
- package.json 4 additions, 0 deletionspackage.json
- src/app.module.ts 1 addition, 2 deletionssrc/app.module.ts
- src/config/config.model.ts 6 additions, 0 deletionssrc/config/config.model.ts
- src/config/config.prod.json 4 additions, 0 deletionssrc/config/config.prod.json
- src/config/config.template.json 4 additions, 0 deletionssrc/config/config.template.json
- src/people/dao/people.dao.ts 35 additions, 6 deletionssrc/people/dao/people.dao.ts
- src/people/people.service.ts 8 additions, 5 deletionssrc/people/people.service.ts
Source diff could not be displayed: it is too large. Options to address this: view the blob.
... | ... | @@ -25,6 +25,7 @@ |
"test:e2e": "jest --config ./test/jest-e2e.json" | ||
}, | ||
"dependencies": { | ||
"@nestjs-modules/mailer": "^1.8.1", | ||
"@nestjs/common": "^9.0.0", | ||
"@nestjs/core": "^9.0.0", | ||
"@nestjs/jwt": "^9.0.0", | ||
... | ... | @@ -35,6 +36,7 @@ |
"class-validator": "^0.13.2", | ||
"eslint-import-resolver-typescript": "^3.5.2", | ||
"fastify": "^4.9.2", | ||
"mailgun-js": "^0.22.0", | ||
"mongoose": "^6.7.2", | ||
"multer": "^1.4.5-lts.1", | ||
"passport": "^0.6.0", | ||
... | ... | @@ -50,7 +52,9 @@ |
"@nestjs/testing": "^9.0.0", | ||
"@types/express": "^4.17.13", | ||
"@types/jest": "28.1.8", | ||
"@types/multer": "^1.4.7", | ||
"@types/node": "^16.0.0", | ||
"@types/nodemailer": "^6.4.7", | ||
"@types/passport-jwt": "^3.0.8", | ||
"@types/passport-local": "^1.0.34", | ||
"@types/supertest": "^2.0.11", | ||
... | ... |
Please register or sign in to comment