You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-11-21 23:00:50 +03:00
Database refactoring
This commit is contained in:
@@ -171,7 +171,6 @@ pub struct AuthorizationGrant<T: StorageBackend> {
|
||||
pub state: Option<String>,
|
||||
pub nonce: Option<String>,
|
||||
pub max_age: Option<NonZeroU32>,
|
||||
pub acr_values: Option<String>,
|
||||
pub response_mode: ResponseMode,
|
||||
pub response_type_id_token: bool,
|
||||
pub created_at: DateTime<Utc>,
|
||||
@@ -190,7 +189,6 @@ impl<S: StorageBackendMarker> From<AuthorizationGrant<S>> for AuthorizationGrant
|
||||
state: g.state,
|
||||
nonce: g.nonce,
|
||||
max_age: g.max_age,
|
||||
acr_values: g.acr_values,
|
||||
response_mode: g.response_mode,
|
||||
response_type_id_token: g.response_type_id_token,
|
||||
created_at: g.created_at,
|
||||
|
||||
Reference in New Issue
Block a user