Skip to content

Commit 62ae5f7

Browse files
committed
Add sample diet restriction constants
1 parent 9a7f742 commit 62ae5f7

1 file changed

Lines changed: 19 additions & 1 deletion

File tree

constants/general.constant.js

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,23 @@ const HACKER_STATUSES = [
2424
HACKER_STATUS_CHECKED_IN
2525
];
2626

27+
const SAMPLE_DIET_RESTRICTIONS = [
28+
"None",
29+
"Vegan",
30+
"Vegetarian",
31+
"Keto",
32+
"Gluten free",
33+
"Pescetarian",
34+
"Peanut allergy",
35+
"Milk allergy",
36+
"Egg allergy",
37+
"Allergy",
38+
"No beef",
39+
"No porc",
40+
"No fish",
41+
"No shellfish"
42+
];
43+
2744
const HACKER = "Hacker";
2845
const VOLUNTEER = "Volunteer";
2946
const STAFF = "Staff";
@@ -123,5 +140,6 @@ module.exports = {
123140
POST_ROLES: POST_ROLES,
124141
CACHE_TIMEOUT_STATS: CACHE_TIMEOUT_STATS,
125142
CACHE_KEY_STATS: CACHE_KEY_STATS,
126-
MAX_TEAM_SIZE: MAX_TEAM_SIZE
143+
MAX_TEAM_SIZE: MAX_TEAM_SIZE,
144+
SAMPLE_DIET_RESTRICTIONS,
127145
};

0 commit comments

Comments
 (0)