Skip to content
Snippets Groups Projects
Commit 466668d4 authored by Charlie Ablett's avatar Charlie Ablett
Browse files

Refactor AttributeCleaner` for readability

parent 45c68b5a
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -4,6 +4,7 @@ module Gitlab
module ImportExport
class AttributeCleaner
ALLOWED_REFERENCES = RelationFactory::PROJECT_REFERENCES + RelationFactory::USER_REFERENCES + ['group_id']
PROHIBITED_SUFFIXES = %w(_id _html).freeze
 
def self.clean(*args)
new(*args).clean
Loading
Loading
@@ -29,7 +30,7 @@ module Gitlab
'cached_markdown_version' == key || PROHIBITED_SUFFIXES.any? {|suffix| key.end_with?(suffix)}
end
 
def allowed_reference?(key)
def permitted_key?(key)
ALLOWED_REFERENCES.include?(key)
end
 
Loading
Loading
@@ -40,4 +41,4 @@ module Gitlab
end
end
end
end
end
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment