-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: update user personal background
Refactor POST PUT call to PUT only
- Loading branch information
1 parent
5ab20f7
commit 63f8956
Showing
2 changed files
with
292 additions
and
141 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
export const GENDER = [ | ||
"Female", | ||
"Male", | ||
"Other", | ||
"Prefer not to say", | ||
"Not Applicable" | ||
] | ||
|
||
export const AGE = [ | ||
"Under 18", | ||
"Between 18 to 20 yo", | ||
"Between 21 to 24 yo", | ||
"Between 25 to 34 yo", | ||
"Between 35 to 44 yo", | ||
"Between 45 to 54 yo", | ||
"Between 55 to 64 yo", | ||
"Above 65 yo", | ||
"Prefer not to say", | ||
"Not Applicable" | ||
] | ||
|
||
export const ETHNICITY = [ | ||
"African-American/Black", | ||
"Caucasian/White", | ||
"Hispanic/Latinx", | ||
"Native American/Alaska Native/First Nations", | ||
"Middle Eastern/North African (MENA)", | ||
"Asian", | ||
"Other", | ||
"Prefer not to say", | ||
"Not Applicable" | ||
] | ||
|
||
export const SEXUAL_ORIENTATION = [ | ||
"Heterosexual/Straight", | ||
"LGBTIA+", | ||
"Other", | ||
"Prefer not to say", | ||
"Not Applicable" | ||
] | ||
|
||
export const RELIGION = [ | ||
"Christianity", | ||
"Judaism", | ||
"Islam", | ||
"Hinduism", | ||
"Buddhism", | ||
"Other", | ||
"Prefer not to say", | ||
"Not Applicable" | ||
] | ||
|
||
export const PHYSICAL_ABILITY = [ | ||
"With/had limited physical ability (or with/had some type of physical disability/ies)", | ||
"Without/have no limitation to physical ability/ies", | ||
"Other", | ||
"Prefer not to say", | ||
"Not Applicable" | ||
] | ||
|
||
export const MENTAL_ABILITY = [ | ||
"With/previously had some type of mental disorders", | ||
"Without/have no mental disorders", | ||
"Other", | ||
"Prefer not to say" | ||
] | ||
|
||
export const SOCIO_ECONOMIC = [ | ||
"Upper class/Elite", | ||
"Upper Middle class (or High-level Professionals/white collars e.g. enginers/accountants/lawyers/architects/managers/directors", | ||
"Lower Middle class (e.g. blue collars in skilled trades/Paralegals/Bank tellers/Sales/Clerical-Admin/other support workers)", | ||
"Working class (e.g. craft workers, factory labourers, restaurant/delivery services workers", | ||
"Underclass, working but with wages under poverty line, receiving Social Benefit from Government", | ||
"Other", | ||
"Prefer not to say", | ||
"Not Applicable" | ||
] | ||
|
||
export const HIGHEST_EDUCATION = [ | ||
"Have/did not completed High School", | ||
"High School Diploma", | ||
"Associate Degree", | ||
"Bachelor's Degree", | ||
"Master's Degree", | ||
"PhD or other Doctorate Degrees", | ||
"Other", | ||
"Prefer not to say", | ||
"Not Applicable" | ||
] | ||
|
||
export const YEARS_OF_EXPERIENCE = [ | ||
"Less than a year", | ||
"Between 1 to 3 years", | ||
"Between 3 to 5 years", | ||
"Between 5 to 10 year", | ||
"Over 10 years of experience", | ||
"Prefer not to say", | ||
"Not Applicable" | ||
] |
Oops, something went wrong.