Skip to content

Commit

Permalink
util function to remove site ids from a data set #3327
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisala committed Sep 16, 2024
1 parent 397ab63 commit 8139b7d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/main/scripts/releases/4.0/adhoc/removeSitesFromDataSets.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
load('../../../utils/dataSets.js');
let adminUserId = '<tba>';

let projectId = 'tbs';

let dataSets = ['ds1','ds2'];

for (let i=0; i<dataSets.length; i++) {
removeDataSetSite(projectId, dataSets[i], adminUserId);
}

0 comments on commit 8139b7d

Please sign in to comment.