Allow "government" in broadcast_channel schema

This will allow admin to pass through a value of "government" for the
broadcast_channel. We don't have any logic around the value of service.broadcast_channel,
so no updates are needed to the tasks etc.
This commit is contained in:
Katie Smith
2021-05-11 16:52:07 +01:00
parent 7eed63eb80
commit 829b646931
3 changed files with 6 additions and 4 deletions

View File

@@ -4,7 +4,7 @@ service_broadcast_settings_schema = {
"type": "object",
"title": "Set a services broadcast settings",
"properties": {
"broadcast_channel": {"enum": ["test", "severe"]},
"broadcast_channel": {"enum": ["test", "severe", "government"]},
"service_mode": {"enum": ["training", "live"]},
"provider_restriction": {"enum": ["three", "o2", "vodafone", "ee", "all"]}
},