1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-28 11:02:02 +03:00

Save the ID token during an upstream authorization

This commit is contained in:
Quentin Gliech
2022-11-24 13:46:59 +01:00
parent bf432a31e1
commit 28bfce7e45
5 changed files with 227 additions and 198 deletions

View File

@ -46,6 +46,7 @@ pub struct UpstreamOAuthAuthorizationSession {
pub created_at: DateTime<Utc>,
pub completed_at: Option<DateTime<Utc>>,
pub consumed_at: Option<DateTime<Utc>>,
pub id_token: Option<String>,
}
impl UpstreamOAuthAuthorizationSession {