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
2018-02-01Track and act upon the number of executed queriesYorick Peterse
This ensures that we have more visibility in the number of SQL queries that are executed in web requests. The current threshold is hardcoded to 100 as we will rarely (maybe once or twice) change it. In production and development we use Sentry if enabled, in the test environment we raise an error. This feature is also only enabled in production/staging when running on GitLab.com as it's not very useful to other users.
2017-08-31API: Use defined project requirementsRobert Schilling
2017-08-28Conditionally destroy a ressourceRobert Schilling
2017-08-28API: Respect the 'If-Unmodified-Since' for delete endpointsRobert Schilling
2017-07-28initShinya Maeda
2017-07-25Merge branch '30634-protected-pipeline' into 'master'Kamil Trzciński
Implement "Block pipelines on protected branches" Closes #30634, #34616, and #33130 See merge request !11910
2017-07-20Update grape gemDmitriy Zaporozhets
New version of the gem returns 200 status code on delete with content instead of 204 so we explicitly set status code to keep existing behavior Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2017-07-20Use struct instead of hashLin Jen-Shin
2017-07-19Use hash to return multiple objectsLin Jen-Shin
2017-06-06Try to report why it's failing and fix testsLin Jen-Shin
2017-03-20Allow dot in branch name in trigger/builds endpoint in APIGeorge Andrinopoulos
2017-03-16Add `requirements: { id: %r{[^/]+} }` for all projects and groups namespaced ↵Rémy Coutable
API routes Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-03-06Rename `/take` to `/take_ownership`, expose `owner` in `v3`.Kamil Trzcinski
2017-03-05Introduce tests for pipeline triggersKamil Trzcinski
2017-03-05Update triggers APIKamil Trzcinski
2017-02-28Return 204 for delete endpointsRobert Schilling
2017-02-24Simplyfy variables validation in triggers APIRobert Schilling
2016-12-04Use the pagination helper in the APIRobert Schilling
2016-11-24API: Use `#find_project` in API::Triggers and API::ServicesRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-11-15Add ref parameter for triggerring builds with gitlab webhook from other project.Dmitry Poray
2016-11-10Grapify token APIRobert Schilling
2016-02-02Make the CI permission model simplerKamil Trzcinski
This MR simplifies CI permission model: - read_build: allows to read a list of builds, artifacts and trace - update_build: allows to cancel and retry builds - create_build: allows to create builds from gitlab-ci.yml (not yet implemented) - admin_build: allows to manage triggers, runners and variables - read_commit_status: allows to read a list of commit statuses (including the overall of builds) - create_commit_status: allows to create a new commit status using API Remove all extra methods to manage permission. Made all controllers to use explicitly the new permissions.
2016-01-13Add some fixes after reviewTomasz Maczukin
2016-01-07Change 'trigger_id' to 'token' as resource ID in triggers APITomasz Maczukin
2016-01-05Get show details feature to triggers APITomasz Maczukin
2016-01-05Add create feature to triggers APITomasz Maczukin
2016-01-05Add delete feature to triggers APITomasz Maczukin
2016-01-04Add triggers feature to APITomasz Maczukin
2015-12-11Fix triggers testsKamil Trzcinski
2015-12-11Reimplement Trigger APIKamil Trzcinski