Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: new settings for the "global cohorts" feature #2544

Merged
merged 5 commits into from
May 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions gen3/bin/kube-setup-cohort-middleware.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ setup_secrets() {
cat - > "$credsFile" <<EOM
---
arborist_endpoint: 'http://arborist-service'
global_reader_role: 'public'
atlas_db:
host: "$DB_HOST"
port: '5432'
Expand Down
9 changes: 9 additions & 0 deletions kube/services/ohdsi-atlas/ohdsi-atlas-config-local.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@ data:
"ajax": false,
"icon": "fa fa-openid"
}];
// This tells Atlas to show the 'lock' icon to the user when
// viewing concept sets, cohort definitions, and other
// artifacts so that they can edit READ and WRITE
// permissions. By default, this is set to true
configLocal.enablePermissionManagement = true; // Default is true
// If the enablePermissionManagement is set to true, you can specify
// if this capability should be limited to only users that have a
// specific permission for this. Leave false if all users should have that ability.
configLocal.limitedPermissionManagement = true; // Default is false all users can share. If true, only users with the permission "artifact:global:share:put" get the ability to share artifacts.
configLocal.cohortComparisonResultsEnabled = false;
configLocal.userAuthenticationEnabled = true;
configLocal.plpResultsEnabled = false;
Expand Down
Loading