diff options
| author | Per Larsson <[email protected]> | 2022-02-02 16:56:38 +0100 |
|---|---|---|
| committer | Per Larsson <[email protected]> | 2022-02-02 16:56:38 +0100 |
| commit | 5b7c068b482b563443320453064fe5fa5601d446 (patch) | |
| tree | 3309bc01ef5ab2f4d08580b5e6c1098c6b45570b /zenserver/config.h | |
| parent | Parse expire time from OpenID refresh token and added OpenId token provider. (diff) | |
| download | zen-5b7c068b482b563443320453064fe5fa5601d446.tar.xz zen-5b7c068b482b563443320453064fe5fa5601d446.zip | |
Added upstream auth config and removed the possibility to add endpoints via REST.
Diffstat (limited to 'zenserver/config.h')
| -rw-r--r-- | zenserver/config.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/zenserver/config.h b/zenserver/config.h index e38b5c704..cad130193 100644 --- a/zenserver/config.h +++ b/zenserver/config.h @@ -23,14 +23,14 @@ struct ZenUpstreamJupiterConfig { std::string Name; std::string Url; - std::string OAuthProvider; + std::string OAuthUrl; std::string OAuthClientId; std::string OAuthClientSecret; + std::string OpenIdProvider; + std::string AccessToken; std::string Namespace; std::string DdcNamespace; - bool UseDevelopmentSettings = false; - bool UseProductionSettings = false; - bool UseLegacyDdc = false; + bool UseLegacyDdc = false; }; struct ZenUpstreamZenConfig |