diff options
Diffstat (limited to 'server/config/config.go')
-rw-r--r-- | server/config/config.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/server/config/config.go b/server/config/config.go index 49b0f2e..e6f1822 100644 --- a/server/config/config.go +++ b/server/config/config.go @@ -20,12 +20,12 @@ type Server struct { // Auth holds the configuration specific to the OAuth provider. type Auth struct { - OauthClientID string `mapstructure:"oauth_client_id"` - OauthClientSecret string `mapstructure:"oauth_client_secret"` - OauthCallbackURL string `mapstructure:"oauth_callback_url"` - Provider string `mapstructure:"provider"` - ProviderOpts map[string]interface{} `mapstructure:"provider_opts"` - JWTSigningKey string `mapstructure:"jwt_signing_key"` + OauthClientID string `mapstructure:"oauth_client_id"` + OauthClientSecret string `mapstructure:"oauth_client_secret"` + OauthCallbackURL string `mapstructure:"oauth_callback_url"` + Provider string `mapstructure:"provider"` + ProviderOpts map[string]string `mapstructure:"provider_opts"` + JWTSigningKey string `mapstructure:"jwt_signing_key"` } // SSH holds the configuration specific to signing ssh keys. |