Skip to content

Commit

Permalink
Removed active and needsApproval properties from Dataset interface; U…
Browse files Browse the repository at this point in the history
…pdated URL in readme to replace comma with a period
  • Loading branch information
otchet-broad committed Sep 4, 2024
1 parent c136a0d commit 034e358
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion DEVNOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ run in GitHub Actions. Create a `cypress.env.json` file in the root of your
local repo that looks like this:
```json
{
"baseUrl": "https://local.dsde-dev,broadinstitute.org:3000/"
"baseUrl": "https://local.dsde-dev.broadinstitute.org:3000/"
}
```
Cypress will use these values in `cypress.config.js` and `cypress/support/commands.js`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -464,9 +464,7 @@ const dar = {
'createUserId': null,
'updateDate': 1643730658770,
'updateUserId': 11111,
'active': true,
'consentName': null,
'needsApproval': null,
'alias': 999,
'datasetIdentifier': 'DUOS-00999',
'dataUse': {
Expand Down Expand Up @@ -670,8 +668,6 @@ const dacDatasets = [{
'propertyValue': 'Sleep Apnea'
}
],
'active': true,
'needsApproval': true,
'isAssociatedToDataOwners': null,
'updateAssociationToDataOwnerAllowed': null,
'alias': 999,
Expand Down
2 changes: 0 additions & 2 deletions src/types/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,6 @@ export interface Dataset {
deletable: boolean;
properties: DatasetProperty[];
study: Study;
active: boolean;
needsApproval: boolean;
alias: string;
datasetIdentifier: string;
objectId: string;
Expand Down

0 comments on commit 034e358

Please sign in to comment.