Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
9b3b0f02
Commit
9b3b0f02
authored
Nov 17, 2017
by
Nick Thomas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix project transfer with hashed-storage attachments
parent
e68ee8af
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
app/services/projects/transfer_service.rb
app/services/projects/transfer_service.rb
+11
-1
No files found.
app/services/projects/transfer_service.rb
View file @
9b3b0f02
...
...
@@ -67,7 +67,7 @@ module Projects
Labels
::
TransferService
.
new
(
current_user
,
@old_group
,
project
).
execute
# Move uploads
Gitlab
::
UploadsTransfer
.
new
.
move_project
(
project
.
path
,
@old_namespace
.
full_path
,
@new_namespace
.
full_path
)
move_project_uploads
(
project
)
# Move pages
Gitlab
::
PagesTransfer
.
new
.
move_project
(
project
.
path
,
@old_namespace
.
full_path
,
@new_namespace
.
full_path
)
...
...
@@ -139,5 +139,15 @@ module Projects
# Move wiki repo also if present
move_repo_folder
(
"
#{
@old_path
}
.wiki"
,
"
#{
@new_path
}
.wiki"
)
end
def
move_project_uploads
(
project
)
return
if
project
.
hashed_storage?
(
:attachments
)
Gitlab
::
UploadsTransfer
.
new
.
move_project
(
project
.
path
,
@old_namespace
.
full_path
,
@new_namespace
.
full_path
)
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment