diff options
author | Clement Ho <clemmakesapps@gmail.com> | 2018-05-29 14:21:28 +0000 |
---|---|---|
committer | Clement Ho <clemmakesapps@gmail.com> | 2018-05-29 14:21:28 +0000 |
commit | c1717225c2157d00658333376f1362d4084999cb (patch) | |
tree | ad65fe748d57a7344b13a9e90816b33529e24556 /lib/api/internal.rb | |
parent | 88f28e0ec8259082a16636bbf2247e14eee927a0 (diff) | |
parent | 4c74936f4567ba142bcd9ca31c8f5f10c8aa52fa (diff) | |
download | gitlab-ce-bootstrap-fixes-from-ee.tar.gz |
Merge branch 'master' into 'bootstrap-fixes-from-ee'bootstrap-fixes-from-ee
# Conflicts:
# app/assets/javascripts/jobs/components/sidebar_details_block.vue
Diffstat (limited to 'lib/api/internal.rb')
-rw-r--r-- | lib/api/internal.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/api/internal.rb b/lib/api/internal.rb index a3dac36b8b6..a9803be9f69 100644 --- a/lib/api/internal.rb +++ b/lib/api/internal.rb @@ -59,7 +59,11 @@ module API status: true, gl_repository: gl_repository, gl_username: user&.username, - repository_path: repository_path, + + # This repository_path is a bogus value but gitlab-shell still requires + # its presence. https://gitlab.com/gitlab-org/gitlab-shell/issues/135 + repository_path: '/', + gitaly: gitaly_payload(params[:action]) } end |