jhipster / generator-jhipster-nodejs

A NodeJS blueprint that creates the backend using NestJS
https://www.npmjs.com/package/generator-jhipster-nodejs
Apache License 2.0
257 stars 81 forks source link

Support the account management with user registration, delete, creation and changes password with settings #166

Closed solidtechvn closed 3 years ago

solidtechvn commented 4 years ago

Describe the bug Project generated return 401 status when register new user To Reproduce Steps to reproduce the behavior:

Expected behavior A clear and concise description of what you expected to happen.

Screenshots If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

Smartphone (please complete the following information):

Additional context Add any other context about the problem here. My .yo-rc-json file: { "generator-jhipster": { "SolidtechVersion": "6.8.0", "applicationType": "monolith", "baseName": "technews", "packageName": "com.jhipster.node", "packageFolder": "com/jhipster/node", "serverPort": "8081", "authenticationType": "jwt", "cacheProvider": "no", "enableHibernateCache": false, "websocket": false, "databaseType": "sql", "devDatabaseType": "sqlite", "prodDatabaseType": "mysql", "searchEngine": false, "messageBroker": false, "serviceDiscoveryType": false, "buildTool": "maven", "enableSwaggerCodegen": false, "embeddableLaunchScript": false, "useSass": true, "clientPackageManager": "npm", "skipClient": true, "creationTimestamp": 1600238386556, "testFrameworks": [], "jhiPrefix": "jhi", "entitySuffix": "", "dtoSuffix": "DTO", "otherModules": [ { "name": "generator-jhipster-nodejs", "version": "1.2.0" } ], "enableTranslation": false, "blueprints": [ { "name": "generator-jhipster-nodejs", "version": "1.2.0" } ] } }

ghost commented 4 years ago

HI! thanks for the interest! Could you please add your .yo-rc.json file?

solidtechvn commented 4 years ago

@amanganiello90 Added

ghost commented 4 years ago

Thanks, I checked your problem. Now the framework does not support the registration of new users. So your issue is due that the user is not created. I will add it in the backlog.

ghost commented 3 years ago

Caused by #101, we need to perform user administration (create and delete user, activated account, change password, change settings with email). In this way the standard protractor e2e tests could be run (especially for react that have more tests then angular).