Skip to content

Commit 8a8e710

Browse files
committed
trim the scope to EOB.rs on auth URL
1 parent 1547f14 commit 8a8e710

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ app.get("/api/authorize/authurl", (req: Request, res: Response) => {
4747
// where <v2 scopes> is space delimited v2 scope specs (url encoded)
4848
// e.g. patient/ExplanationOfBenefit.rs
4949
const redirectUrl = bb.generateAuthorizeUrl(authData) +
50-
"&scope=patient%2FPatient.s%20patient%2FExplanationOfBenefit.rs"
50+
"&scope=patient%2FExplanationOfBenefit.rs"
5151
res.send(redirectUrl);
5252
});
5353

0 commit comments

Comments
 (0)