Skip to content

Commit

Permalink
Fix #3940 : Add missing REST service definition to Count Patients fro…
Browse files Browse the repository at this point in the history
…m external archive in QueryRS class
  • Loading branch information
vrindanayak committed Jan 30, 2023
1 parent 3471276 commit 44f5004
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,14 @@ public void countSPS(@Suspended AsyncResponse ar) {
search(ar, Level.MWL, false, null, null, QIDO.MWL, true);
}

@GET
@NoCache
@Path("/patients/count")
@Produces("application/json")
public void countPatients(@Suspended AsyncResponse ar) {
search(ar, Level.PATIENT, false, null, null, QIDO.PATIENT, true);
}

@GET
@NoCache
@Path("/studies/count")
Expand Down

0 comments on commit 44f5004

Please sign in to comment.