Skip to content

Commit

Permalink
adding aliases and fixing callback url
Browse files Browse the repository at this point in the history
  • Loading branch information
AnalogJ committed Nov 14, 2023
1 parent e5dbe60 commit 47923f2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion definitions/internal/source/rockymountainhealthplans.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func GetSourceRockymountainhealthplans(env pkg.FastenLighthouseEnvType, clientId
sourceDef.Display = "Rocky Mountain Health Plans"
sourceDef.SourceType = pkg.SourceTypeRockymountainhealthplans
sourceDef.Category = []string{"Insurance"}
sourceDef.Aliases = []string{}
sourceDef.Aliases = []string{"rmhp"}
sourceDef.PatientAccessUrl = "https://www.rmhp.org/"

return sourceDef, err
Expand Down
2 changes: 1 addition & 1 deletion definitions/internal/source/sierrahealthandlife.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func GetSourceSierrahealthandlife(env pkg.FastenLighthouseEnvType, clientIdLooku
sourceDef.Display = "Sierra Health and Life"
sourceDef.SourceType = pkg.SourceTypeSierrahealthandlife
sourceDef.Category = []string{"Insurance"}
sourceDef.Aliases = []string{}
sourceDef.Aliases = []string{"sierra"}
sourceDef.PatientAccessUrl = "https://www.sierrahealthandlife.com/"

return sourceDef, err
Expand Down
3 changes: 2 additions & 1 deletion definitions/internal/source/unitedhealthcare.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,12 @@ func GetSourceUnitedhealthcare(env pkg.FastenLighthouseEnvType, clientIdLookup m
if clientId, clientIdOk := clientIdLookup[pkg.SourceTypeUnitedhealthcare]; clientIdOk {
sourceDef.ClientId = clientId
}
sourceDef.RedirectUri = pkg.GetCallbackEndpoint(string(pkg.SourceTypeUnitedhealthcare))

sourceDef.Display = "United Healthcare"
sourceDef.SourceType = pkg.SourceTypeUnitedhealthcare
sourceDef.Category = []string{"Insurance"}
sourceDef.Aliases = []string{}
sourceDef.Aliases = []string{"uhc"}
sourceDef.PatientAccessUrl = "https://www.uhc.com"

return sourceDef, err
Expand Down

0 comments on commit 47923f2

Please sign in to comment.