File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed
with-django/with-thirdpartyemailpassword/sampleapp
with-fastapi/with-thirdpartyemailpassword
with-flask/with-thirdpartyemailpassword Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
### Breaking changes
11
11
12
- - Rename ` get_session_data ` to ` get_session_data_from_database ` to clarity that it always hits the DB
12
+ - Renamed ` get_session_data ` to ` get_session_data_from_database ` to clarity that it always hits the DB
13
13
- Renamed ` update_session_data ` to ` update_session_data_in_database `
14
14
- Renamed ` session_data ` to ` session_data_in_database ` in ` SessionInformation ` and the input to ` create_new_session `
15
15
Original file line number Diff line number Diff line change @@ -11,6 +11,6 @@ def get_session_info(request: HttpRequest) -> JsonResponse:
11
11
"sessionHandle" : session_ .get_handle (),
12
12
"userId" : session_ .get_user_id (),
13
13
"accessTokenPayload" : session_ .get_access_token_payload (),
14
- # ' sessionData' : session_.get_session_data (),
14
+ # " sessionData" : session_.sync_get_session_data_from_database (),
15
15
}
16
16
)
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ async def get_session_info(session_: SessionContainer = Depends(verify_session()
119
119
"sessionHandle" : session_ .get_handle (),
120
120
"userId" : session_ .get_user_id (),
121
121
"accessTokenPayload" : session_ .get_access_token_payload (),
122
- # ' sessionData' : await session_.get_session_data ()
122
+ # " sessionData" : await session_.get_session_data_from_database ()
123
123
}
124
124
)
125
125
Original file line number Diff line number Diff line change @@ -121,6 +121,7 @@ def get_session_info():
121
121
"sessionHandle" : session_ .get_handle (),
122
122
"userId" : session_ .get_user_id (),
123
123
"accessTokenPayload" : session_ .get_access_token_payload (),
124
+ # "sessionData": session_.sync_get_session_data_from_database()
124
125
}
125
126
)
126
127
You can’t perform that action at this time.
0 commit comments