Merge branch '52066-blacklist-encrypted_-columns-in-gitlab-project-export' into 'master'

Resolve "Blacklist `encrypted_*` columns in gitlab project export"

Closes #52066

See merge request gitlab-org/gitlab-ce!22072
This commit is contained in:
Nick Thomas 2018-10-03 11:15:50 +00:00
commit e113e2517c
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ describe 'Import/Export - project export integration test', :js do
let(:export_path) { "#{Dir.tmpdir}/import_file_spec" }
let(:config_hash) { YAML.load_file(Gitlab::ImportExport.config_file).deep_stringify_keys }
let(:sensitive_words) { %w[pass secret token key] }
let(:sensitive_words) { %w[pass secret token key encrypted] }
let(:safe_list) do
{
token: [ProjectHook, Ci::Trigger, CommitStatus],