generated from Real-Dev-Squad/website-template
-
Notifications
You must be signed in to change notification settings - Fork 273
Feat: Implement APIs for Tracking Departed Users with Assigned Tasks #2251
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
Closed
VinuB-Dev
wants to merge
15
commits into
Real-Dev-Squad:develop
from
VinuB-Dev:feat/departed-users-api
Closed
Changes from 1 commit
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
6e8f25c
Created users/departed-users API
VinuB-Dev e79685e
- moved the function which returns the required data to service layer…
VinuB-Dev d16df03
Chore: Feedback changes
VinuB-Dev f8cce46
chore: Added test cases for tasks model and removed unnecessary comme…
VinuB-Dev aedda22
Removed unnecessary comments.
VinuB-Dev 28b078d
Feedback changes:
VinuB-Dev 8d94dcd
Merge branch 'develop' into feat/departed-users-api
VinuB-Dev 9c167c3
- Added dev feature flag through the middleware to control access to …
VinuB-Dev 10c885c
Merge branch 'feat/departed-users-api' of https://github.com/VinuB-De…
VinuB-Dev 06cb623
Merge branch 'develop' into feat/departed-users-api
VinuB-Dev 7a1265b
Merge branch 'develop' into feat/departed-users-api
VinuB-Dev 2a94cf3
feat: Removed separate rotue for departed users and added the functio…
VinuB-Dev 9756fac
Merge branch 'develop' into feat/departed-users-api
VinuB-Dev c03ce96
chore: Added early return for departed not having dev flag and fixed …
VinuB-Dev ae61319
Merge branch 'develop' into feat/departed-users-api
Achintya-Chatterjee 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
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 |
---|---|---|
|
@@ -442,5 +442,68 @@ module.exports = () => { | |
url: "https://res.cloudinary.com/realdevsquad/image/upload/v1667685133/profile/mtS4DhUvNYsKqI7oCWVB/aenklfhtjldc5ytei3ar.jpg", | ||
}, | ||
}, | ||
{ | ||
id: "user1_id", | ||
discordId: "123456789", | ||
github_id: "github_user1", | ||
username: "archived_user1", | ||
first_name: "Archived", | ||
last_name: "User One", | ||
linkedin_id: "archived_user1", | ||
github_display_name: "archived-user-1", | ||
phone: "1234567890", | ||
email: "[email protected]", | ||
roles: { | ||
archived: true, | ||
in_discord: false, | ||
}, | ||
discordJoinedAt: "2024-01-01T00:00:00.000Z", | ||
picture: { | ||
publicId: "profile/user1", | ||
url: "https://example.com/user1.jpg", | ||
}, | ||
}, | ||
{ | ||
id: "user2_id", | ||
discordId: "987654321", | ||
github_id: "github_user2", | ||
username: "archived_user2", | ||
first_name: "Archived", | ||
last_name: "User Two", | ||
linkedin_id: "archived_user2", | ||
github_display_name: "archived-user-2", | ||
phone: "0987654321", | ||
email: "[email protected]", | ||
roles: { | ||
archived: true, | ||
in_discord: false, | ||
}, | ||
discordJoinedAt: "2024-01-02T00:00:00.000Z", | ||
picture: { | ||
publicId: "profile/user2", | ||
url: "https://example.com/user2.jpg", | ||
}, | ||
}, | ||
{ | ||
id: "user3_id", | ||
discordId: "555555555", | ||
github_id: "github_user3", | ||
username: "active_user", | ||
first_name: "Active", | ||
last_name: "User", | ||
linkedin_id: "active_user", | ||
github_display_name: "active-user", | ||
phone: "5555555555", | ||
email: "[email protected]", | ||
roles: { | ||
archived: false, | ||
in_discord: true, | ||
}, | ||
discordJoinedAt: "2024-01-03T00:00:00.000Z", | ||
picture: { | ||
publicId: "profile/user3", | ||
url: "https://example.com/user3.jpg", | ||
}, | ||
}, | ||
]; | ||
}; |
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
Oops, something went wrong.
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.