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

Extending Cohort generation results with simple demographics available in Cohort Characterization #2959

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Prev Previous commit
Getting rid of "Retain Cohort Covariates" feature leftovers
alex-odysseus committed Oct 8, 2024
commit 9bdeec041dc42fa383491e73171087115aa2a7cd
4 changes: 2 additions & 2 deletions js/services/CohortDefinition.js
Original file line number Diff line number Diff line change
@@ -100,8 +100,8 @@ define(function (require, exports) {
}


function generate(cohortDefinitionId, sourceKey, retainCohortCovariates, widthDemographic) {
return httpService.doGet(`${config.webAPIRoot}cohortdefinition/${cohortDefinitionId}/generate/${sourceKey}?demographic=${widthDemographic}`); }
function generate(cohortDefinitionId, sourceKey, withDemographic) {
return httpService.doGet(`${config.webAPIRoot}cohortdefinition/${cohortDefinitionId}/generate/${sourceKey}?demographic=${withDemographic}`); }


function cancelGenerate(cohortDefinitionId, sourceKey) {