Skip to content

Commit

Permalink
Fixed 502 bad gateway issue (#255)
Browse files Browse the repository at this point in the history
* 502 Issue Fixed

* Fixed issue : #251
Corrected Broken Postman Collection Link

---------

Co-authored-by: Rakshit Shinde <[email protected]>
Co-authored-by: Ganesh Kuber <[email protected]>
  • Loading branch information
3 people authored Nov 5, 2024
1 parent 79f8440 commit b52beac
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion samples/sample-postman-queries/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ This section shows the steps to assign **FHIR Data Contruibutor** role to a regi

1. Access the Postman environment template for FHIR service [here](./fhir-service.postman_environment.json). Save the file locally (click on **Raw** and then do a **Save as** from your browser).

2. Now, access the ```FHIR Collection.postman-collection.json``` file available in this repo [here](./FHIR-Collection.postman_collection.json) and save the file locally.
2. Now, access the ```FHIR-Collection.postman-collection.json``` file available in this repo [here](./FHIR-Collection.postman_collection.json) and save the file locally.


### Create a workspace, Import collection and environment
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public async Task<OperationContext> ExecuteAsync(OperationContext context)
try
{
await _graphContextService.PersistAppConsentScopeIfRemoval(appConsentInfo, userId);
context.StatusCode = HttpStatusCode.NoContent;
context.StatusCode = HttpStatusCode.OK;
return context;
}
catch (Microsoft.Graph.ServiceException ex)
Expand Down

0 comments on commit b52beac

Please sign in to comment.