-
Notifications
You must be signed in to change notification settings - Fork 13
Added route for adding bulk user #132
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
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
b93f266
Added user route for uploading bulk users to database
Raman-pro 2b9cd57
shifted code to authControler and authRouter as well as added random …
Raman-pro 93cbbb1
added functionality for adding role to /signup and /post-add-users
Raman-pro 0b5525d
feat : updated workflow file for new repo and pm2 process name
Shobhit141141 04f7c3d
Fix: Update submodule 'commonlib' to the latest commit
Shobhit141141 e5720c2
feat : update workflows
Shobhit141141 8d6a9ec
feat: fallback to deployment workflow
Shobhit141141 6bf0465
fix : github workflow
Shobhit141141 ec6ea40
fix: remove --delete in deployment workflow
Shobhit141141 49a0eec
fix: run PM2 restart command with root
Shobhit141141 c4b2a04
fix: update PM2 restart command to use full path
Shobhit141141 f0de5ad
Use sudo to restart application with PM2
Shobhit141141 7c99906
Refactor deployment workflow in main.yml
Shobhit141141 5a68d6c
fix the deployment workflow
Shobhit141141 6748879
Added user route for uploading bulk users to database
Raman-pro e92a57a
refactor: roll out registration mails for bulk user addition
Shobhit141141 b8873b2
Merge branch 'main' into main
Shobhit141141 2bb3649
chore ran npm run lint
Raman-pro 58fd951
Added functionality of checking email if already exists or not in aut…
Raman-pro 970d1d6
Merge branch 'update'
Raman-pro 9ba4214
refactor: improve response messages in postBulkUserController for use…
Shobhit141141 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,35 +1,23 @@ | ||
| { | ||
| "compilerOptions": { | ||
| "module": "NodeNext", | ||
| "moduleResolution": "nodenext", | ||
| "target": "ESNext", | ||
| "sourceMap": false, | ||
| "outDir": "dist", | ||
| "allowJs": false, | ||
| "strictNullChecks": true, | ||
| "typeRoots": [ | ||
| "./src/types", | ||
| "./node_modules/@types" | ||
| ], | ||
| "baseUrl": ".", | ||
| "paths": { // Adjust based on your project structure | ||
| "@/*": [ | ||
| "./src/*" | ||
| ], | ||
| "@static/*": [ | ||
| "./src/commonlib/*" | ||
| ] | ||
| }, | ||
| "resolveJsonModule": true | ||
| "compilerOptions": { | ||
| "module": "NodeNext", | ||
| "moduleResolution": "nodenext", | ||
| "target": "ESNext", | ||
| "sourceMap": false, | ||
| "outDir": "dist", | ||
| "allowJs": false, | ||
| "strictNullChecks": true, | ||
| "typeRoots": ["./src/types", "./node_modules/@types"], | ||
| "baseUrl": ".", | ||
| "paths": { | ||
| // Adjust based on your project structure | ||
| "@/*": ["./src/*"], | ||
| "@static/*": ["./src/commonlib/*"] | ||
| }, | ||
| "ts-node": { | ||
| "require": [ | ||
| "tsconfig-paths/register" | ||
| ] | ||
| }, | ||
| "exclude": [ | ||
| "node_modules", | ||
| "dist", | ||
| "src/scripts" | ||
| ], | ||
| } | ||
| "resolveJsonModule": true | ||
| }, | ||
| "ts-node": { | ||
| "require": ["tsconfig-paths/register"] | ||
| }, | ||
| "exclude": ["node_modules", "dist", "src/scripts"] | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.