Skip to content

Commit

Permalink
Separate the CR search operation from default
Browse files Browse the repository at this point in the history
Separate the CR search operation from default
  • Loading branch information
reagan-meant authored Aug 12, 2024
2 parents 508a41f + 5df4130 commit 3ee339c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package org.openmrs.module.clientregistry.providers.r4;

import ca.uhn.fhir.model.valueset.BundleTypeEnum;
import ca.uhn.fhir.rest.annotation.Search;
import ca.uhn.fhir.rest.param.StringParam;
import ca.uhn.fhir.rest.param.StringOrListParam;
import ca.uhn.fhir.rest.param.TokenParam;
Expand Down Expand Up @@ -91,7 +90,7 @@ public List<Patient> getCRPatientById(
return patients;
}

@Search
@Operation(name = "$search", idempotent = true)
public List<Patient> searchClientRegistryPatients() {
throw new NotImplementedOperationException("search client registry is not yet implemented");
}
Expand Down

0 comments on commit 3ee339c

Please sign in to comment.