Skip to content

Commit

Permalink
chore: getter for milestone report from progress report added
Browse files Browse the repository at this point in the history
  • Loading branch information
naneey committed Sep 26, 2023
1 parent 0604159 commit fe188f5
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1611,6 +1611,11 @@ private Map<String, Object> getProgressReportDetails(String progressKey) {
return getDataFromProgressReportDB(progressReportPrefix(progressKey));
}

@External(readonly = true)
public List<Integer> getMilestoneCountOfProgressReport(String progressKey){
return getMilestoneSubmittedFromProgressReportDB(progressReportPrefix(progressKey));
}

@External(readonly = true)
public Map<String, Object> getProgressReportVoteDetails(String progressKey) {
return getVoteResultsFromProgressReportDB(progressReportPrefix(progressKey));
Expand Down

0 comments on commit fe188f5

Please sign in to comment.