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
AgeCommit message (Collapse)Author
2020-03-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-27Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-06Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-05Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-05Extract /internal/allowed API Actor logic outAsh McKenzie
Created new API::Support::GitAccessActor class to encapsulate some of the more edge logic, making the /internal/allowed route much cleaner.
2019-08-23Add label_id parameter to label API for PUT and DELETEPatrick Derichs
Add specs for new parameter and updated documentation as well.
2019-07-26Add frozen_string_literal to spec/lib (part 1)Thong Kuah
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
2019-07-12Upgrade to Rails 5.2Heinrich Lee Yu
Updates changed method names and fixes spec failures
2019-06-06Include the port in the URLs of the API Link headersRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-05-07Use a path for the related merge requests endpointStan Hu
Hosts using a non-standard configuration may have a different hostname/port/scheme than what may be configured on the GitLab server. While expose_url should generate a proper URL, there are cases where it may not work. Since we don't need the full URL, we can use the relative path. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/61280
2019-04-24Get rid of the user_namespace API helper methodRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-04-05Autocorrect with RSpec/ExampleWording copThong Kuah
- rewords examples starting with 'should' - rewords examples starting with 'it' Note: I had to manually fixup "onlies" to "only"
2019-04-03Add port section to CI Image objectFrancisco Javier López
In order to implement https://gitlab.com/gitlab-org/gitlab-ee/issues/10179 we need several modifications on the CI config file. We are adding a new ports section in the default Image object. Each of these ports will accept: number, protocol and name. By default this new configuration will be only enabled in the Web IDE config file.
2019-03-08Provide EE backports for filtering by approver featureIgor
Adds custom validator for ArrayNoneAny param Extracts some logic in js into separate files
2019-03-07Revert "Merge branch 'id-1951-filter-merge-requests-by-approvers' into 'master'"Igor
This reverts merge request !24982
2019-03-07Provide EE backports for filtering by approver featureIgor
Adds custom validator for ArrayNoneAny param Extracts some logic in js into separate files
2019-02-21Properly implement API pagination headers and add specsAdam Mulvany
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-02-05Encode Content-Disposition filenamesStan Hu
Users downloading non-ASCII attachments would see garbled characters. When used with object storage, AWS S3 would return an InvalidArgument error: Header value cannot be represented using ISO-8859-1. Per RFC 5987 and RFC 6266, Content-Disposition should be encoded properly. This commit takes the Rails 6 implementation of ActiveSuppport::Http::ContentDisposition (https://github.com/rails/rails/pull/33829) and ports it here. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/47673
2019-01-22[API] Omit X-Total{,-Pages} when count > 10kRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-01-10Fix files/blob api endpoint content dispositionFrancisco Javier López
2019-01-04Improve readablity of CI_API_V4_URL related codeGrzegorz Bizon
2019-01-03Add API::Helpers::Version and expose API root URLGrzegorz Bizon
This commits adds a new class that is supposed to represent Grape API version, like `v3` or `v4`.
2019-01-03Expose method that returns GitLab API pathsGrzegorz Bizon
2018-12-31Fixed api content-disposition in blob and files endpointFrancisco Javier López
2018-10-26Support lowercase none / anyHeinrich Lee Yu
2018-10-26Refactor api validator to separate classHeinrich Lee Yu
2018-09-07Include private contributions in user contribution graphGeorge Tsiolis
2018-05-22Merge branch 'ab-42194-keyset-pagination' into 'master'Yorick Peterse
API: Keyset pagination support Closes #45756 See merge request gitlab-org/gitlab-ce!18584
2018-05-22Fix `expose_url` helper does not include custom base url if it is setFrancisco Javier López
2018-05-21Add keyset pagination for API calls.Andreas Brandl
Closes #45756.
2018-04-13Validate project path prior to hitting the database.Andreas Brandl
Closes #45247.
2018-03-12Respect the protocol in `expose_url`Toon Claes
When https is configured in the URL, also use that, and do not set it to http. Closes gitlab-org/gitlab-ee#5217
2017-12-04Added default order to UserFinderFrancisco Javier López
2017-11-28Add some unit tests for lib/api/helpers.rbTomasz Maczukin
2017-08-17Total Pages should be at least oneToon Claes
And the link to the last page cannot be `page=0`.
2017-08-17Add specs for pagination Link headerToon Claes
Add specs that check the 'Link' header for the inclusion of: - rel="first" - rel="last" - rel="prev" - rel="next" Fixes gitlab-org/gitlab-ce#36618 Related to gitlab-com/infrastructure#2532
2017-08-03Change all `:empty_project` to `:project`Robert Speicher
2016-12-27Add tests for pagination module extracted from APIGrzegorz Bizon