Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-07-30 21:09:08 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-07-30 21:09:08 +0300
commit861cc0c363283c359becb153d0f6e88393cd3e79 (patch)
treeb338ffd187d52d5ffdf7ae6ab08ccce0e45236a4 /doc/development/uploads.md
parent0daaf2c2ba5a0537094a53e7f84386616dbcbff0 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/uploads.md')
-rw-r--r--doc/development/uploads.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/development/uploads.md b/doc/development/uploads.md
index 7cdc3875fd6..9c5686db0f6 100644
--- a/doc/development/uploads.md
+++ b/doc/development/uploads.md
@@ -120,7 +120,8 @@ We have three kinds of file encoding in our uploads:
1. <i class="fa fa-check-circle"></i> **multipart**: `multipart/form-data` is the most common, a file is encoded as a part of a multipart encoded request.
1. <i class="fa fa-check-circle"></i> **body**: some APIs uploads files as the whole request body.
-1. <i class="fa fa-times-circle"></i> **JSON**: some JSON API uploads files as base64 encoded strings. This requires a change to GitLab Workhorse, which [is planned](https://gitlab.com/gitlab-org/gitlab-workhorse/-/issues/226).
+1. <i class="fa fa-times-circle"></i> **JSON**: some JSON API uploads files as base64 encoded strings. This requires a change to GitLab Workhorse,
+ which is tracked [in this issue](https://gitlab.com/gitlab-org/gitlab/-/issues/325068).
## Uploading technologies