-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfeature-flags.json
46 lines (46 loc) · 1.23 KB
/
feature-flags.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"features": [
{
"name": "sms",
"description": "Sends reminder text messages",
"enabled_for": {
"environments": ["staging", "production"]
}
},
{
"name": "capped_bookings",
"description": "Allows schools to provide a maximum number of bookings per date",
"enabled_for": {
"environments": ["development", "test", "servertest"]
}
},
{
"name": "reminders",
"description": "Sends reminder emails and text messages",
"enabled_for": {
"environments": ["test", "servertest", "staging", "production"]
}
},
{
"name": "rolecheck",
"description": "Checks for School Experience administrator role",
"enabled_for": {
"environments": []
}
},
{
"name": "task_progress_on_boarding",
"description": "Enables the task progress style of on-boarding journey",
"enabled_for": {
"environments": ["development", "staging", "production"]
}
},
{
"name": "skip_candidate_confirmation_emails",
"description": "Removes the need for new candidates to confirm their email address",
"enabled_for": {
"environments": ["development", "staging"]
}
}
]
}