Skip to content

Commit

Permalink
Added the missing studyResourcePath (Individual / Harmonization). (#3978
Browse files Browse the repository at this point in the history
)
  • Loading branch information
kazoompa committed Sep 3, 2020
1 parent 7371dae commit 9981770
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,8 @@ Mica.StudySummaryDto asDtoFromDceUid(String dceUid) {
.setTimestamps(TimestampsDtos.asDto(study))
.addAllName(localizedStringDtos.asDto(study.getName()))
.addAllAcronym(localizedStringDtos.asDto(study.getAcronym()))
.addAllObjectives(localizedStringDtos.asDto(study.getObjectives()));
.addAllObjectives(localizedStringDtos.asDto(study.getObjectives()))
.setStudyResourcePath(study.getResourcePath());

Optional<Population> optionalPopulation = study.getPopulations().stream().filter(population -> population.getId().equals(populationId)).findFirst();
if (optionalPopulation.isPresent()) {
Expand Down

0 comments on commit 9981770

Please sign in to comment.