generated from Real-Dev-Squad/website-template
-
Notifications
You must be signed in to change notification settings - Fork 256
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2179 from Real-Dev-Squad/feat/paginationInProfile…
…DiffsAPI Added Pagination in profile diffs API
- Loading branch information
Showing
7 changed files
with
364 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 |
---|---|---|
|
@@ -17,5 +17,90 @@ module.exports = () => { | |
website: "", | ||
message: "", | ||
}, | ||
{ | ||
approval: "APPROVED", | ||
timestamp: Date.now() - 86400000, // 1 day ago | ||
first_name: "Jane", | ||
last_name: "Doe", | ||
email: "[email protected]", | ||
phone: "9876543210", | ||
yoe: "5", | ||
company: "TechCorp", | ||
designation: "Senior Developer", | ||
github_id: "janedoe", | ||
linkedin_id: "jane-doe-dev", | ||
twitter_id: "janedoedev", | ||
instagram_id: "jane.codes", | ||
website: "https://janedoe.dev", | ||
message: "Updated my work experience and social media profiles.", | ||
}, | ||
{ | ||
approval: "NOT APPROVED", | ||
timestamp: Date.now() - 172800000, // 2 days ago | ||
first_name: "John", | ||
last_name: "Smith", | ||
email: "[email protected]", | ||
phone: "5551234567", | ||
yoe: "3", | ||
company: "StartupX", | ||
designation: "Full Stack Engineer", | ||
github_id: "johnsmith", | ||
linkedin_id: "john-smith-dev", | ||
twitter_id: "johnsmithcodes", | ||
instagram_id: "", | ||
website: "https://johnsmith.io", | ||
message: "Added new skills and updated job title.", | ||
}, | ||
{ | ||
approval: "PENDING", | ||
timestamp: Date.now() - 259200000, // 3 days ago | ||
first_name: "Alice", | ||
last_name: "Johnson", | ||
email: "[email protected]", | ||
phone: "1112223333", | ||
yoe: "7", | ||
company: "BigTech Inc.", | ||
designation: "Lead Data Scientist", | ||
github_id: "alicej", | ||
linkedin_id: "alice-johnson-data", | ||
twitter_id: "alicejdata", | ||
instagram_id: "alice.codes.data", | ||
website: "https://alicejohnson.ai", | ||
message: "Updated my profile with recent Machine Learning certifications.", | ||
}, | ||
{ | ||
approval: "APPROVED", | ||
timestamp: Date.now() - 345600000, // 4 days ago | ||
first_name: "Bob", | ||
last_name: "Williams", | ||
email: "[email protected]", | ||
phone: "4445556666", | ||
yoe: "2", | ||
company: "CodeNinja", | ||
designation: "Junior Developer", | ||
github_id: "bobwilliams", | ||
linkedin_id: "bob-williams-dev", | ||
twitter_id: "bobcodes", | ||
instagram_id: "", | ||
website: "", | ||
message: "First time updating my profile!", | ||
}, | ||
{ | ||
approval: "PENDING", | ||
timestamp: Date.now() - 432000000, // 5 days ago | ||
first_name: "Emma", | ||
last_name: "Brown", | ||
email: "[email protected]", | ||
phone: "7778889999", | ||
yoe: "4", | ||
company: "WebWizards LLC", | ||
designation: "UX Designer", | ||
github_id: "emmab", | ||
linkedin_id: "emma-brown-ux", | ||
twitter_id: "emmauxdesign", | ||
instagram_id: "emma.designs", | ||
website: "https://emmabrown.design", | ||
message: "Updated portfolio and added recent UX projects.", | ||
}, | ||
]; | ||
}; |
Oops, something went wrong.