We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a7f742 commit 62ae5f7Copy full SHA for 62ae5f7
1 file changed
constants/general.constant.js
@@ -24,6 +24,23 @@ const HACKER_STATUSES = [
24
HACKER_STATUS_CHECKED_IN
25
];
26
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
+
44
const HACKER = "Hacker";
45
const VOLUNTEER = "Volunteer";
46
const STAFF = "Staff";
@@ -123,5 +140,6 @@ module.exports = {
123
140
POST_ROLES: POST_ROLES,
124
141
CACHE_TIMEOUT_STATS: CACHE_TIMEOUT_STATS,
125
142
CACHE_KEY_STATS: CACHE_KEY_STATS,
126
- MAX_TEAM_SIZE: MAX_TEAM_SIZE
143
+ MAX_TEAM_SIZE: MAX_TEAM_SIZE,
144
+ SAMPLE_DIET_RESTRICTIONS,
127
145
};
0 commit comments