diff options
author | Clement Ho <ClemMakesApps@gmail.com> | 2018-02-16 10:16:48 -0600 |
---|---|---|
committer | Clement Ho <ClemMakesApps@gmail.com> | 2018-02-16 10:16:48 -0600 |
commit | 3f6d3dc11a8c2406b8a8c7e8b81005c31f7caa4f (patch) | |
tree | 3a6407e4ce1a21163c213273f9950d79e4c88f97 /config | |
parent | 1c2d283d506f2ceb4777622837fffe381e34cb9d (diff) | |
parent | 46d59a5d24c0cdbfab42587426dba3ab7b85be03 (diff) | |
download | gitlab-ce-3f6d3dc11a8c2406b8a8c7e8b81005c31f7caa4f.tar.gz |
Merge branch 'master' into dispatcher-mr-haml
Diffstat (limited to 'config')
-rw-r--r-- | config/application.rb | 2 | ||||
-rw-r--r-- | config/webpack.config.js | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/config/application.rb b/config/application.rb index c914e34b9c3..918bd4d57cf 100644 --- a/config/application.rb +++ b/config/application.rb @@ -69,6 +69,7 @@ module Gitlab # - Webhook URLs (:hook) # - Sentry DSN (:sentry_dsn) # - Deploy keys (:key) + # - Secret variable values (:value) config.filter_parameters += [/token$/, /password/, /secret/] config.filter_parameters += %i( certificate @@ -80,6 +81,7 @@ module Gitlab sentry_dsn trace variables + value ) # Enable escaping HTML in JSON. diff --git a/config/webpack.config.js b/config/webpack.config.js index b31529591e9..62ed3d31e1f 100644 --- a/config/webpack.config.js +++ b/config/webpack.config.js @@ -77,12 +77,9 @@ var config = { notes: './notes/index.js', pdf_viewer: './blob/pdf_viewer.js', pipelines: './pipelines/pipelines_bundle.js', - pipelines_charts: './pipelines/pipelines_charts.js', pipelines_details: './pipelines/pipeline_details_bundle.js', - pipelines_times: './pipelines/pipelines_times.js', profile: './profile/profile_bundle.js', project_import_gl: './projects/project_import_gitlab_project.js', - prometheus_metrics: './prometheus_metrics', protected_branches: './protected_branches', protected_tags: './protected_tags', registry_list: './registry/index.js', @@ -98,7 +95,6 @@ var config = { vue_merge_request_widget: './vue_merge_request_widget/index.js', test: './test.js', two_factor_auth: './two_factor_auth.js', - users: './users/index.js', webpack_runtime: './webpack.js', }, |