Skip to content

Commit

Permalink
fixed an issue with resouce setup
Browse files Browse the repository at this point in the history
  • Loading branch information
SaraMunich-Lantana committed Oct 1, 2024
1 parent d392d12 commit 8353979
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,14 +150,17 @@ private CapabilityStatementRestComponent getRest(HttpServletRequest request) {
CapabilityStatementRestResourceComponent claim = getClaim();
CapabilityStatementRestResourceComponent claimResponse = getClaimResponse();
CapabilityStatementRestResourceComponent patient = getPatient();
CapabilityStatementRestResourceComponent observation = getObservation();
CapabilityStatementRestResourceComponent condition = getCondition();
CapabilityStatementRestResourceComponent procedure = getProcedure();
CapabilityStatementRestResourceComponent bundle = getBundle();
CapabilityStatementRestResourceComponent subscription = getSubscriptionResponse();
rest.addResource(claim);
rest.addResource(claimResponse);
rest.addResource(patient);
rest.addResource(getObservation());
rest.addResource(getCondition());
rest.addResource(getProcedure());
rest.addResource(observation);
rest.addResource(condition);
rest.addResource(procedure);
rest.addResource(bundle);
rest.addResource(subscription);

Expand Down

0 comments on commit 8353979

Please sign in to comment.