summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Lopez <james@jameslopez.es>2017-08-30 21:31:40 +0200
committerJames Lopez <james@jameslopez.es>2017-08-30 21:41:25 +0200
commitdf9c30271f614e18d08cd18a525ac61d0abdc492 (patch)
treefd207c24f8e877517a145d48d480c08047e2d69b
parent22df39a1ed9d2330e9a27bbdc7d508e5fa0b0c95 (diff)
downloadgitlab-ce-df9c30271f614e18d08cd18a525ac61d0abdc492.tar.gz
fix README
-rw-r--r--lib/gitlab/import_export/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gitlab/import_export/README.md b/lib/gitlab/import_export/README.md
index 76c090caea4..56363905ada 100644
--- a/lib/gitlab/import_export/README.md
+++ b/lib/gitlab/import_export/README.md
@@ -33,7 +33,7 @@ in the DB has changed that needs an update in the Import/Export.
### Adding a new sensitive word (such as `pass`) will make the feature spec `export_file_spec.rb` to fail.
- You can update the spec to add the model to `safe_list` in case it's fine to export this info.
-- Alternatively, you can ignore the attribute in `import_export.yml` (excluded_attributes section)
+- Alternatively, you can ignore the attribute in `import_export.yml` (`excluded_attributes` section)
### Adding a new model - `model_configuration_spec.rb`
@@ -52,7 +52,7 @@ The attributes will be exported automatically, but we need to know they are safe
- If it's safe to export/import this attributes, simply add them to `safe_model_attributes.yml`
- If you don't want those attributes to be exported/imported, blacklist them in `import_export.yml`
-(excluded_attributes section)
+(`excluded_attributes` section)
## Bumping the version number