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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config/application.rb3
-rw-r--r--lib/api/v3/settings.rb4
2 files changed, 0 insertions, 7 deletions
diff --git a/config/application.rb b/config/application.rb
index 46652637c1f..f2ecc4ce77c 100644
--- a/config/application.rb
+++ b/config/application.rb
@@ -55,7 +55,6 @@ module Gitlab
# - Webhook URLs (:hook)
# - GitLab-shell secret token (:secret_token)
# - Sentry DSN (:sentry_dsn)
- # - Clientside Sentry DSN (:clientside_sentry_dsn)
# - Deploy keys (:key)
config.filter_parameters += %i(
authentication_token
@@ -72,8 +71,6 @@ module Gitlab
runners_token
secret_token
sentry_dsn
- clientside_sentry_enabled
- clientside_sentry_dsn
variables
)
diff --git a/lib/api/v3/settings.rb b/lib/api/v3/settings.rb
index 67a85e13d8c..aa31f01b62c 100644
--- a/lib/api/v3/settings.rb
+++ b/lib/api/v3/settings.rb
@@ -89,10 +89,6 @@ module API
given sentry_enabled: ->(val) { val } do
requires :sentry_dsn, type: String, desc: 'Sentry Data Source Name'
end
- optional :clientside_sentry_enabled, type: Boolean, desc: 'Sentry can also be used for reporting and logging clientside exceptions. https://sentry.io/for/javascript/'
- given clientside_sentry_enabled: ->(val) { val } do
- requires :clientside_sentry_dsn, type: String, desc: 'Clientside Sentry Data Source Name'
- end
optional :repository_storage, type: String, desc: 'Storage paths for new projects'
optional :repository_checks_enabled, type: Boolean, desc: "GitLab will periodically run 'git fsck' in all project and wiki repositories to look for silent disk corruption issues."
optional :koding_enabled, type: Boolean, desc: 'Enable Koding'