summaryrefslogtreecommitdiff
path: root/spec/factories/uploads.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-161-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-031-10/+15
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-021-12/+12
|
* Add rake tasks for migrating leacy uploadslegacy-attachments-migrate-fixJarka Košanová2019-08-161-4/+1
| | | | | - move uploads created by AttachmentUploader - handle also files created for legacy_diff_notes
* Add frozen_string_literal to spec/factoriesfrozen_string_spec_factoriesThong Kuah2019-07-261-0/+2
| | | | | Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
* Revert "Merge branch '50070-legacy-attachments' into 'master'"sh-revert-mr-24679Stan Hu2019-06-091-1/+4
| | | | | This reverts commit fd19f887dfeeeedb483c4a4fb32f9f768e89389c, reversing changes made to abb2d4c601d796339c8d7cb0c00946696730f198.
* Migrate legacy uploads to the project location50070-legacy-attachmentsJarka Košanová2019-06-061-4/+1
| | | | | | Uploads coming from AttachmentUploader need to be moved to the currently supported location (FileUploader)
* Optimise upload path callsSean McGivern2019-05-141-1/+1
| | | | | | | | String#underscore isn't particularly slow, but it's possible for us to call it many times in a users autocomplete request, with mostly-static values ('User', 'Group', etc.). We can memoise this and save a surprising amount of time (around 10% of the total request time in some cases).
* Fix DynamicAttributeDefinedStatically copSemyon Pupkov2018-09-211-5/+5
|
* Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/6860Valery Sizov2018-08-141-0/+7
|
* update uploads saverJames Lopez2018-07-101-0/+7
|
* remove geo specific codeMicaël Bergeron2018-03-011-1/+0
|
* port the object storage to CEMicaël Bergeron2018-03-011-0/+5
|
* Merge commit '7e424eb852716495073881710e8a8851b4a4cd5a' into ↵Kamil Trzciński2018-02-281-8/+12
|\ | | | | | | object-storage-ee-to-ce-backport
| * add the uploader context to the upload modelMicaël Bergeron2018-02-021-8/+12
| |
| * port of 594e6a0a625^..f74c90f68c6Micaël Bergeron2018-02-011-4/+22
| |
* | Merge branch '4163-move-uploads-to-object-storage' into 'master'Sean McGivern2018-02-281-4/+23
|/ | | | | | | | Move uploads to object storage Closes #4163 See merge request gitlab-org/gitlab-ee!3867
* Replace factory_girl_rails with factory_bot_railsrc/use-factory_bot_railsRémy Coutable2017-12-141-1/+1
| | | | | | | | | | | I've followed the [upgrade guide](https://github.com/thoughtbot/factory_bot/blob/4-9-0-stable/UPGRADE_FROM_FACTORY_GIRL.md) and ran these two commands: ``` grep -e FactoryGirl **/*.rake **/*.rb -s -l | xargs sed -i "" "s|FactoryGirl|FactoryBot|" grep -e factory_girl **/*.rake **/*.rb -s -l | xargs sed -i "" "s|factory_girl|factory_bot|" ``` Signed-off-by: Rémy Coutable <remy@rymai.me>
* Support uploads for groupsJarka Kadlecova2017-12-071-0/+16
|
* Change all `:empty_project` to `:project`rs-empty_project-defaultRobert Speicher2017-08-021-1/+1
|
* Ensure all project factories use `:repository` trait or `:empty_project`rs-empty_project-cleanupRobert Speicher2017-08-011-1/+1
|
* Update specs for new upload pathBob Van Landuyt2017-07-181-1/+1
|
* Bring in security changes from the 9.2.5 releaseDJ Mountney2017-06-071-0/+8
Ran: - git format-patch v9.2.2..v9.2.5 --stdout > patchfile.patch - git checkout -b 9-2-5-security-patch origin/v9.2.2 - git apply patchfile.patch - git commit - [Got the sha ref for the commit] - git checkout -b upstream-9-2-security master - git cherry-pick <SHA of the patchfile commit> - [Resolved conflicts] - git cherry-pick --continue