From 86c5a5850cadb10e756bd04b76eceda93f334b6d Mon Sep 17 00:00:00 2001 From: Alexis Lucattini Date: Sun, 2 Feb 2025 17:25:37 +1100 Subject: [PATCH] Gives oncoanalyser access to read/write to cohort projects --- application/settings.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/application/settings.ts b/application/settings.ts index df6cb1c..2331589 100644 --- a/application/settings.ts +++ b/application/settings.ts @@ -30,13 +30,13 @@ class Shared { getOrcabusDataPrefix(): string { if (this.envName == 'dev'){ - return 'byob-icav2/development/' + return 'byob-icav2/*/' } if (this.envName == 'stg'){ - return 'byob-icav2/staging/' + return 'byob-icav2/*/' } if (this.envName == 'prod'){ - return 'byob-icav2/production/' + return 'byob-icav2/*/' } throw new Error("Don't know how to handle envName: " + this.envName); }