diff --git a/brian_dashboard_manager/config.py b/brian_dashboard_manager/config.py index a7aa27464a22fd4d7f0c5cadd823c6b9d47adf46..83840e871392e7ed12406bdd43adc6740ffcaff8 100644 --- a/brian_dashboard_manager/config.py +++ b/brian_dashboard_manager/config.py @@ -2,11 +2,6 @@ import json import jsonschema DEFAULT_ORGANIZATIONS = [ - { - "name": "Main Org.", - "excluded_nrens": [], - "excluded_dashboards": [] - }, { "name": "GÉANT Staff", "excluded_nrens": [], @@ -15,23 +10,40 @@ DEFAULT_ORGANIZATIONS = [ { "name": "NRENs", "excluded_nrens": [], - "excluded_dashboards": [] + "excluded_dashboards": [ + "GÉANT Office devices", + "GÉANT VM" + ] }, { "name": "General Public", "excluded_nrens": [ - "JISC", + "CARNET", "PSNC" ], - "excluded_dashboards": [] + "excluded_dashboards": [ + "GÉANT Office devices", + "GÉANT VM" + ] }, { "name": "CAE1 - Europe", + "excluded_nrens": [], + "excluded_dashboards": [ + "GÉANT Office devices", + "GÉANT VM" + ] + }, + { + "name": "CAE1 - Asia", "excluded_nrens": [ - "JISC", + "CARNET", "PSNC" ], - "excluded_dashboards": [] + "excluded_dashboards": [ + "GÉANT Office devices", + "GÉANT VM" + ] } ] @@ -68,13 +80,14 @@ CONFIG_SCHEMA = { "type": "object", "properties": { "name": {"type": "string"}, - "excluded_nrens": {"type": "array", "items": {"type": "string"}}, - "excluded_dashboards": {"type": "array", "items": {"type": "string"}}, + "excluded_nrens": { + "type": "array", + "items": {"type": "string"} + }, }, "required": [ "name", "excluded_nrens", - "excluded_dashboards" ] } },