updated attribute cleaner to use allowed keyword and reject attributes

This commit is contained in:
James Lopez 2016-09-27 16:12:08 +02:00
parent 4c480be39b
commit 9e0b7c630f
1 changed files with 3 additions and 3 deletions

View File

@ -1,11 +1,11 @@
module Gitlab
module ImportExport
class AttributeCleaner
IGNORED_REFERENCES = Gitlab::ImportExport::RelationFactory::PROJECT_REFERENCES + Gitlab::ImportExport::RelationFactory::USER_REFERENCES
ALLOWED_REFERENCES = RelationFactory::PROJECT_REFERENCES + RelationFactory::USER_REFERENCES
def self.clean!(relation_hash:)
relation_hash.select! do |key, _value|
IGNORED_REFERENCES.include?(key) || !key.end_with?('_id')
relation_hash.reject! do |key, _value|
key.end_with?('_id') && !ALLOWED_REFERENCES.include?(key)
end
end
end