Commit 65b8e37b authored by Imre Farkas's avatar Imre Farkas

Merge branch 'georgekoltsov/remove-name-path-from-group-ie-yml' into 'master'

Remove Name & Path from excluded params on Group Import

Closes #206927

See merge request gitlab-org/gitlab!25342
parents 4b671061 46dcdae1
---
title: Remove name & path from list of excluded attributes during Group Import
merge_request: 25342
author:
type: fixed
...@@ -28,8 +28,6 @@ included_attributes: ...@@ -28,8 +28,6 @@ included_attributes:
excluded_attributes: excluded_attributes:
group: group:
- :id - :id
- :name
- :path
- :owner_id - :owner_id
- :parent_id - :parent_id
- :created_at - :created_at
......
...@@ -82,8 +82,6 @@ describe Gitlab::ImportExport::GroupTreeRestorer do ...@@ -82,8 +82,6 @@ describe Gitlab::ImportExport::GroupTreeRestorer do
shared_examples 'excluded attributes' do shared_examples 'excluded attributes' do
excluded_attributes = %w[ excluded_attributes = %w[
id id
name
path
owner_id owner_id
parent_id parent_id
created_at created_at
......
...@@ -160,8 +160,6 @@ describe Gitlab::ImportExport::GroupTreeSaver do ...@@ -160,8 +160,6 @@ describe Gitlab::ImportExport::GroupTreeSaver do
shared_examples 'excluded attributes' do shared_examples 'excluded attributes' do
excluded_attributes = %w[ excluded_attributes = %w[
id id
name
path
owner_id owner_id
parent_id parent_id
created_at created_at
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment