File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -20,4 +20,5 @@ RUN if [ "$BUILD_DEVELOPMENT" = "True" ]; then \
2020 fi
2121
2222RUN pipenv lock
23+ RUN pip install click
2324RUN pipenv install --system --deploy --ignore-pipfile
Original file line number Diff line number Diff line change 3535
3636@app .route ('/api/authorize/authurl' , methods = ['GET' ])
3737def get_auth_url ():
38- redirect_url = bb .generate_authorize_url (auth_data )
38+ # for SMART App v2 scopes usage: explicitly
39+ # provide query parameter scope=<v2 scopes>
40+ # where <v2 scopes> is space delimited v2 scope specs (url encoded)
41+ # e.g. patient/ExplanationOfBenefit.rs
42+ redirect_url = (bb .generate_authorize_url (auth_data )
43+ + "&scope=patient%2FExplanationOfBenefit.s" )
3944 return redirect_url
4045
4146
You can’t perform that action at this time.
0 commit comments