Untitled
user_1095306
plain_text
a year ago
277 B
1
Indexable
Never
fn from_response(auth: AuthenticationResponse, provider: AuthProvider) -> Self { StoredCredential { provider, access_token: auth.access_token, refresh_token: auth.refresh_token, expires_at: auth.expires_in.map(|e| Utc::now() + Duration::seconds(e)), } }