-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into JC/seedscript-data
- Loading branch information
Showing
38 changed files
with
2,561 additions
and
2,086 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -192,6 +192,9 @@ export const users: User[] = [ | |
accountType: UserType.ApprovedOrg, | ||
profilePic: "https://d2epenzoyf672m.cloudfront.net/pfp/doctorstrange.webp", | ||
degreeName: null, | ||
otp: null, | ||
otpExpiry: null, | ||
firstTimeLogin: true, | ||
}, | ||
{ | ||
id: ids.userIds[2], | ||
|
@@ -203,28 +206,37 @@ export const users: User[] = [ | |
accountType: UserType.PendingOrg, | ||
profilePic: null, | ||
degreeName: null, | ||
otp: null, | ||
otpExpiry: null, | ||
firstTimeLogin: true, | ||
}, | ||
{ | ||
id: ids.userIds[3], | ||
firstName: "Tom", | ||
lastName: "Dee", | ||
email: "[email protected]", | ||
firstName: "Aarsh", | ||
lastName: "Shah", | ||
email: "[email protected]", | ||
password: "Hashed-password1238", | ||
institutionId: ids.instituteIds[1], | ||
accountType: UserType.Student, | ||
profilePic: null, | ||
degreeName: "Computer Science", | ||
otp: null, | ||
otpExpiry: null, | ||
firstTimeLogin: false, | ||
}, | ||
{ | ||
id: ids.userIds[4], | ||
firstName: "Aarsh", | ||
firstName: "AS", | ||
lastName: "Shah", | ||
email: "[email protected]", | ||
password: "password123", | ||
institutionId: null, | ||
accountType: UserType.Admin, | ||
profilePic: null, | ||
degreeName: null, | ||
otp: null, | ||
otpExpiry: null, | ||
firstTimeLogin: false, | ||
}, | ||
{ | ||
id: ids.userIds[5], | ||
|
@@ -236,6 +248,9 @@ export const users: User[] = [ | |
accountType: UserType.Student, | ||
profilePic: null, | ||
degreeName: null, | ||
otp: null, | ||
otpExpiry: null, | ||
firstTimeLogin: false, | ||
}, | ||
{ | ||
id: ids.userIds[6], | ||
|
@@ -247,6 +262,9 @@ export const users: User[] = [ | |
accountType: UserType.Student, | ||
profilePic: null, | ||
degreeName: "Arts", | ||
otp: null, | ||
otpExpiry: null, | ||
firstTimeLogin: false, | ||
}, | ||
{ | ||
id: ids.userIds[7], | ||
|
@@ -258,6 +276,9 @@ export const users: User[] = [ | |
accountType: UserType.Student, | ||
profilePic: null, | ||
degreeName: null, | ||
otp: null, | ||
otpExpiry: null, | ||
firstTimeLogin: false, | ||
}, | ||
{ | ||
id: ids.userIds[8], | ||
|
@@ -269,6 +290,9 @@ export const users: User[] = [ | |
accountType: UserType.PendingOrg, | ||
profilePic: null, | ||
degreeName: null, | ||
otp: null, | ||
otpExpiry: null, | ||
firstTimeLogin: false, | ||
}, | ||
{ | ||
id: ids.userIds[9], | ||
|
@@ -280,6 +304,9 @@ export const users: User[] = [ | |
accountType: UserType.PendingOrg, | ||
profilePic: null, | ||
degreeName: null, | ||
otp: null, | ||
otpExpiry: null, | ||
firstTimeLogin: false, | ||
}, | ||
{ | ||
id: ids.userIds[10], | ||
|
@@ -291,6 +318,9 @@ export const users: User[] = [ | |
accountType: UserType.ApprovedOrg, | ||
profilePic: null, | ||
degreeName: null, | ||
otp: null, | ||
otpExpiry: null, | ||
firstTimeLogin: false, | ||
}, | ||
]; | ||
|
||
|
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
Oops, something went wrong.