summaryrefslogtreecommitdiff
path: root/internal/configuration/schema/configuration.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/configuration/schema/configuration.go')
-rw-r--r--internal/configuration/schema/configuration.go10
1 files changed, 6 insertions, 4 deletions
diff --git a/internal/configuration/schema/configuration.go b/internal/configuration/schema/configuration.go
index 3035fcc20..31e5119c4 100644
--- a/internal/configuration/schema/configuration.go
+++ b/internal/configuration/schema/configuration.go
@@ -2,10 +2,12 @@ package schema
// Configuration object extracted from YAML configuration file.
type Configuration struct {
- Port int `yaml:"port"`
- LogsLevel string `yaml:"logs_level"`
- JWTSecret string `yaml:"jwt_secret"`
- DefaultRedirectionURL string `yaml:"default_redirection_url"`
+ Port int `yaml:"port"`
+ LogsLevel string `yaml:"logs_level"`
+ JWTSecret string `yaml:"jwt_secret"`
+ DefaultRedirectionURL string `yaml:"default_redirection_url"`
+ GoogleAnalyticsTrackingID string `yaml:"google_analytics"`
+
AuthenticationBackend AuthenticationBackendConfiguration `yaml:"authentication_backend"`
Session SessionConfiguration `yaml:"session"`