summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-12-23 15:00:18 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-12-23 15:00:18 +0000
commit6ce82deda34e8af9d07cf7dfff0057f33b9e6187 (patch)
treee88b7ca57376e83556c7a651d61dbe8ba09440b5 /app
parent3d62fe7ad9b32c2e68d253d0b2bd178215c65fa5 (diff)
downloadgitlab-ce-6ce82deda34e8af9d07cf7dfff0057f33b9e6187.tar.gz
Add latest changes from gitlab-org/gitlab@13-7-stable-ee
Diffstat (limited to 'app')
-rw-r--r--app/controllers/repositories/lfs_api_controller.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/app/controllers/repositories/lfs_api_controller.rb b/app/controllers/repositories/lfs_api_controller.rb
index 248323a0bb5..9b7cbcb2dfe 100644
--- a/app/controllers/repositories/lfs_api_controller.rb
+++ b/app/controllers/repositories/lfs_api_controller.rb
@@ -91,12 +91,17 @@ module Repositories
def upload_actions(object)
{
upload: {
- href: "#{project.http_url_to_repo}/gitlab-lfs/objects/#{object[:oid]}/#{object[:size]}",
+ href: "#{upload_http_url_to_repo}/gitlab-lfs/objects/#{object[:oid]}/#{object[:size]}",
header: upload_headers
}
}
end
+ # Overridden in EE
+ def upload_http_url_to_repo
+ project.http_url_to_repo
+ end
+
def upload_headers
headers = {
Authorization: authorization_header,