Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Wittig <max.wittig@siemens.com>2019-06-28 13:35:29 +0300
committerMax Wittig <max.wittig@siemens.com>2019-07-12 15:37:16 +0300
commit5199c4c8b646f3e66b0f03dd51fbaa704d9fd94f (patch)
treec60baf57319ea68b7b7213c4bba07662ced06d86 /app_config.go
parent7d39822ce2221156c3479ceae0e4f8e24c7373b2 (diff)
feat: add flag to define custom response headers
Diffstat (limited to 'app_config.go')
-rw-r--r--app_config.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/app_config.go b/app_config.go
index 8b9eb303..00469db6 100644
--- a/app_config.go
+++ b/app_config.go
@@ -30,12 +30,12 @@ type appConfig struct {
LogFormat string
LogVerbose bool
- StoreSecret string
- GitLabServer string
- ClientID string
- ClientSecret string
- RedirectURI string
-
+ StoreSecret string
+ GitLabServer string
+ ClientID string
+ ClientSecret string
+ RedirectURI string
SentryDSN string
SentryEnvironment string
+ CustomHeaders []string
}