We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9aafe25 commit 1547f14Copy full SHA for 1547f14
1 file changed
server/index.ts
@@ -46,7 +46,8 @@ app.get("/api/authorize/authurl", (req: Request, res: Response) => {
46
// provide query parameter scope=<v2 scopes>
47
// where <v2 scopes> is space delimited v2 scope specs (url encoded)
48
// e.g. patient/ExplanationOfBenefit.rs
49
- const redirectUrl = bb.generateAuthorizeUrl(authData) + "&scope=patient%2FPatient.s%20patient%2FExplanationOfBenefit.rs"
+ const redirectUrl = bb.generateAuthorizeUrl(authData) +
50
+ "&scope=patient%2FPatient.s%20patient%2FExplanationOfBenefit.rs"
51
res.send(redirectUrl);
52
});
53
0 commit comments