diff options
| author | Per Larsson <[email protected]> | 2022-02-02 09:25:28 +0100 |
|---|---|---|
| committer | Per Larsson <[email protected]> | 2022-02-02 09:25:28 +0100 |
| commit | b22e362ae30b669a02825a13ed2544ae0b9ac649 (patch) | |
| tree | fa5e119212535cf44908dfd95f92c37c73322684 /zenserver/auth/oidc.h | |
| parent | Moved cloud cache token provider out from options. (diff) | |
| download | zen-b22e362ae30b669a02825a13ed2544ae0b9ac649.tar.xz zen-b22e362ae30b669a02825a13ed2544ae0b9ac649.zip | |
Parse expire time from OpenID refresh token and added OpenId token provider.
Diffstat (limited to 'zenserver/auth/oidc.h')
| -rw-r--r-- | zenserver/auth/oidc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zenserver/auth/oidc.h b/zenserver/auth/oidc.h index b08181bfd..4ed06317b 100644 --- a/zenserver/auth/oidc.h +++ b/zenserver/auth/oidc.h @@ -39,7 +39,7 @@ public: std::string IdentityToken; std::string Scope; std::string Reason; - double ExpiresIn{}; + int64_t ExpiresInSeconds{}; bool Ok = false; }; |