Skip to content

Commit

Permalink
fixing maximeyes Sandbox endpoint.
Browse files Browse the repository at this point in the history
Removed invalid scope from Flatiron config.
Ensure that trailing slash is removed from Flatiron config.
  • Loading branch information
AnalogJ committed May 27, 2024
1 parent d103bd9 commit 4604153
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions catalog/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -179408,11 +179408,11 @@
"status": "active",
"connection_type": "hl7-fhir-rest",
"platform_type": "maximeyes",
"url": "https://fhirdehr.maximeyes.com/api/FhirTest/R4/",
"authorization_endpoint": "https://connectsandbox.first-insight.com/connect/authorize",
"token_endpoint": "https://connectsandbox.first-insight.com/connect/token",
"smart_configuration_url": "https://fhirdehr.maximeyes.com/api/FhirTest/R4/.well-known/smart-configuration",
"fhir_capabilities_url": "https://fhirdehr.maximeyes.com/api/FhirTest/R4/metadata"
"url": "https://fhirqa.maximeyes.com/api/ipcert/R4/",
"authorization_endpoint": "https://connectsandbox.maximeyes.com/connect/authorize",
"token_endpoint": "https://connectsandbox.maximeyes.com/connect/token",
"smart_configuration_url": "https://fhirqa.maximeyes.com/api/ipcert/R4/.well-known/smart-configuration",
"fhir_capabilities_url": "https://fhirqa.maximeyes.com/api/ipcert/R4/metadata"
},
"f4ee5a42-8a2f-4411-8f63-0401401fae64": {
"id": "f4ee5a42-8a2f-4411-8f63-0401401fae64",
Expand Down
3 changes: 2 additions & 1 deletion definitions/models/lighthouse_endpoint_definition.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ func (def *LighthouseSourceDefinition) Populate(
def.PlatformType == pkg.PlatformTypeNetsmart ||
def.PlatformType == pkg.PlatformTypeQualifactsCredible ||
def.PlatformType == pkg.PlatformTypeQualifactsCareLogic ||
def.PlatformType == pkg.PlatformTypeNHS {
def.PlatformType == pkg.PlatformTypeNHS ||
def.PlatformType == pkg.PlatformTypeFlatiron {
//remove trailing slash for audience for CareEvolution & Anthem
def.Audience = strings.TrimSuffix(def.Audience, "/")
}
Expand Down
2 changes: 0 additions & 2 deletions definitions/platform/flatiron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ scopes_supported:
- fhirUser
- openid
- offline_access
- launch/patient
- patient/AllergyIntolerance.read
- patient/CarePlan.read
- patient/CareTeam.read
Expand All @@ -18,7 +17,6 @@ scopes_supported:
- patient/Encounter.read
- patient/Goal.read
- patient/Immunization.read
- patient/Device.read
- patient/Observation.read
- patient/Location.read
- patient/Medication.read
Expand Down
1 change: 1 addition & 0 deletions definitions/platform/maximeyes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ scopes_supported:
- fhirUser
- openid
- offline_access
- launch/patient
- patient/AllergyIntolerance.read
- patient/CarePlan.read
- patient/CareTeam.read
Expand Down

0 comments on commit 4604153

Please sign in to comment.