summaryrefslogtreecommitdiff
path: root/spec/requests/api/triggers_spec.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot2020-07-201-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-261-12/+32
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-041-0/+12
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-031-27/+27
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-171-2/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-141-16/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-291-0/+2
|
* Drop feature to take ownership of a trigger tokenFabio Pitino2019-07-101-28/+0
| | | | | | | Removing API and frontend interactions that allowed users to take ownership of a trigger token. Removed mentions from the documentation.
* Do not expose trigger token when user should not see itGrzegorz Bizon2019-01-311-5/+9
|
* Update specs to rails5 formatblackst0ne-convert-specs-rails5-styleblackst0ne2018-12-191-15/+15
| | | | | | | | | | Updates specs to use new rails5 format. The old format: `get :show, { some: params }, { some: headers }` The new format: `get :show, params: { some: params }, headers: { some: headers }`
* Rename project's pipelines relationFrancisco Javier López2018-12-051-1/+1
|
* Resolve "Rename the `Master` role to `Maintainer`" BackendMark Chao2018-07-111-1/+1
|
* Refactor `have_http_status` into `have_gitlab_http_status` in the specsJacopo2017-10-201-32/+32
|
* Merge branch 'api-delete-respect-headers' into 'master'Sean McGivern2017-08-301-0/+4
|\ | | | | | | | | API: Respect the 'If-Unmodified-Since' for delete endpoints See merge request !9621
| * Add tests for the unmodified headerRobert Schilling2017-08-281-0/+4
| |
* | Remove trigger_request.trigger.ownerShinya Maeda2017-08-291-12/+12
| |
* | Reproduced bugShinya Maeda2017-08-291-0/+16
|/
* Remove duplicate update for ownerLin Jen-Shin2017-08-281-1/+0
|
* Make default trigger factory generate an ownerLin Jen-Shin2017-08-251-4/+2
| | | | And specify owners more clearly
* Enable the Layout/SpaceBeforeBlockBraces coprc/enable-the-Layout/SpaceBeforeBlockBraces-copRémy Coutable2017-08-091-2/+2
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Ensure all project factories use `:repository` trait or `:empty_project`rs-empty_project-cleanupRobert Speicher2017-08-011-1/+1
|
* Fix static snalysysShinya Maeda2017-07-281-1/+1
|
* Use let(:pipeline) for variables spec in triggers_spec.rbShinya Maeda2017-07-281-2/+1
|
* initShinya Maeda2017-07-281-9/+10
|
* Fix other tests which tested against error message30634-protected-pipelineLin Jen-Shin2017-06-071-1/+2
|
* Unnecessary "include WaitForAjax" and "include ApiHelpers"Jacopo2017-04-211-2/+0
| | | | | Removed all the unnecessary include of `WaitForAjax` and `ApiHelpers` in the specs. Removed unnecessary usage of `api:true`
* Allow dot in branch name in trigger/builds endpoint in APIGeorge Andrinopoulos2017-03-201-8/+22
|
* Rename `/take` to `/take_ownership`, expose `owner` in `v3`.Kamil Trzcinski2017-03-061-4/+4
|
* Update after reviewKamil Trzcinski2017-03-061-1/+1
|
* Introduce tests for pipeline triggersKamil Trzcinski2017-03-051-32/+115
|
* Return 204 for delete endpointsRobert Schilling2017-02-281-1/+2
|
* Add a custom pagination matcherRobert Schilling2017-02-161-0/+1
|
* Use `:empty_project` where possible in request specsrs-empty_project-requestsRobert Speicher2017-01-261-1/+1
|
* Replace many :project with :empty_projects in API specsuse-empty_project-factory-in-api-specsRémy Coutable2017-01-171-1/+1
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Changed API spec files to describe the correct classLivier2016-11-281-1/+1
| | | | | | | | Restore changes for api spec files Fix error in rspec Users Delete extra space Repositories-spec
* Add ref parameter for triggerring builds with gitlab webhook from other project.Dmitry Poray2016-11-151-0/+7
|
* Grapify token APIRobert Schilling2016-11-101-1/+1
|
* Pre-create all builds for Pipeline when a trigger is receivedKamil Trzcinski2016-08-111-1/+2
| | | | | | | | | | | This change simplifies a Pipeline processing by introducing a special new status: created. This status is used for all builds that are created for a pipeline. We are then processing next stages and queueing some of the builds (created -> pending) or skipping them (created -> skipped). This makes it possible to simplify and solve a few ordering problems with how previously builds were scheduled. This also allows us to visualise a full pipeline (with created builds). This also removes an after_touch used for updating a pipeline state parameters. Right now in various places we explicitly call a reload_status! on pipeline to force it to be updated and saved.
* adds second batch of tests changed to active tenseactive-tense-test-coveragetiagonbotelho2016-08-091-22/+22
|
* Use HTTP matchers if possibleZ.J. van de Weg2016-06-271-22/+22
|
* Rename all `[ci_]commit` to `[ci_]pipeline` in specs and featuresKamil Trzcinski2016-06-031-6/+6
|
* Rename Ci::Commit to Ci::Pipeline and rename some of the ci_commit to pipelineKamil Trzcinski2016-06-021-1/+1
|
* Add traits for each access_level to ProjectMember factoryRobert Speicher2016-03-061-2/+2
|
* Add some fixes after reviewTomasz Maczukin2016-01-131-6/+6
|
* Change 'trigger_id' to 'token' as resource ID in triggers APITomasz Maczukin2016-01-071-28/+14
|
* Get show details feature to triggers APITomasz Maczukin2016-01-051-5/+51
|
* Add create feature to triggers APITomasz Maczukin2016-01-051-0/+29
|
* Add delete feature to triggers APITomasz Maczukin2016-01-051-0/+33
|
* Add triggers feature to APITomasz Maczukin2016-01-041-4/+41
|
* Fix triggers testsKamil Trzcinski2015-12-111-4/+4
|