From 1bd8eaad3ac41b9f48159b524427288b01100940 Mon Sep 17 00:00:00 2001 From: Iain Dillingham Date: Tue, 17 Oct 2023 17:29:20 +0100 Subject: [PATCH] feat: Restrict access to Open Pathways dataset --- opensafely/check.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/opensafely/check.py b/opensafely/check.py index 4241736..a187f6f 100644 --- a/opensafely/check.py +++ b/opensafely/check.py @@ -67,6 +67,11 @@ class RestrictedDataset: cohort_extractor_function_names=[], ehrql_table_names=["wl_clockstops", "wl_clockstops_raw"], ), + RestrictedDataset( + name="wl_openpathways", + cohort_extractor_function_names=[], + ehrql_table_names=["wl_openpathways", "wl_openpathways_raw"], + ), ] PERMISSIONS_URL = "https://raw.githubusercontent.com/opensafely-core/opensafely-cli/main/repository_permissions.yaml"