summaryrefslogtreecommitdiff
path: root/app/controllers/projects/jobs_controller.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@15-10-stable-eev15.10.0-rc42GitLab Bot2023-03-201-9/+8
|
* Add latest changes from gitlab-org/gitlab@15-9-stable-eev15.9.0-rc42GitLab Bot2023-02-201-3/+8
|
* Add latest changes from gitlab-org/gitlab@15-7-stable-eev15.7.0-rc42GitLab Bot2022-12-201-3/+0
|
* Add latest changes from gitlab-org/gitlab@15-4-stable-eev15.4.0-rc42GitLab Bot2022-09-191-2/+7
|
* Add latest changes from gitlab-org/gitlab@15-3-stable-eev15.3.0-rc42GitLab Bot2022-08-181-3/+3
|
* Add latest changes from gitlab-org/gitlab@15-2-stable-eev15.2.0-rc42GitLab Bot2022-07-201-21/+5
|
* Add latest changes from gitlab-org/gitlab@15-1-stable-eev15.1.0-rc42GitLab Bot2022-06-201-2/+2
|
* Add latest changes from gitlab-org/gitlab@15-0-stable-eev15.0.0-rc42GitLab Bot2022-05-191-5/+6
|
* Add latest changes from gitlab-org/security/gitlab@14-10-stable-eeGitLab Bot2022-04-291-11/+1
|
* Add latest changes from gitlab-org/gitlab@14-10-stable-eev14.10.0-rc42GitLab Bot2022-04-201-3/+11
|
* Add latest changes from gitlab-org/gitlab@14-9-stable-eev14.9.0-rc42GitLab Bot2022-03-181-0/+2
|
* Add latest changes from gitlab-org/gitlab@14-7-stable-eev14.7.0-rc42GitLab Bot2022-01-201-0/+1
|
* Add latest changes from gitlab-org/gitlab@14-6-stable-eev14.6.0-rc42GitLab Bot2021-12-201-4/+4
|
* Add latest changes from gitlab-org/gitlab@14-5-stable-eev14.5.0-rc42GitLab Bot2021-11-181-6/+2
|
* Add latest changes from gitlab-org/gitlab@14-4-stable-eev14.4.0-rc42GitLab Bot2021-10-201-3/+2
|
* Add latest changes from gitlab-org/gitlab@14-2-stable-eev14.2.0-rc42GitLab Bot2021-08-191-10/+16
|
* Add latest changes from gitlab-org/gitlab@14-1-stable-eev14.1.0-rc42GitLab Bot2021-07-201-0/+4
|
* Add latest changes from gitlab-org/gitlab@13-11-stable-eev13.11.0-rc43GitLab Bot2021-04-201-0/+5
|
* Add latest changes from gitlab-org/gitlab@13-10-stable-eeGitLab Bot2021-03-261-2/+2
|
* Add latest changes from gitlab-org/gitlab@13-9-stable-eev13.9.0-rc42GitLab Bot2021-02-181-3/+0
|
* Add latest changes from gitlab-org/gitlab@13-7-stable-eeGitLab Bot2021-01-081-13/+17
|
* Add latest changes from gitlab-org/gitlab@13-7-stable-eev13.7.0-rc42GitLab Bot2020-12-171-7/+16
|
* Add latest changes from gitlab-org/gitlab@13-6-stable-eev13.6.0-rc42GitLab Bot2020-11-191-0/+3
|
* Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot2020-10-211-22/+33
|
* Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot2020-07-201-9/+1
|
* Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot2020-06-181-2/+38
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-141-2/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-131-0/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-12-131-2/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-11-261-24/+5
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-211-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterlistGitLab Bot2019-10-171-25/+14
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-09-181-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-09-131-0/+2
|
* Creates Feature Flag for job logFilipa Lacerda2019-08-301-0/+15
| | | | | Updates frontend code and specs to allow for the new feature flag
* Add Job specific variablesMatija Čupić2019-07-291-1/+5
| | | | | Adds Job specific variables to facilitate specifying variables when running manual jobs.
* Make checks for continue_params more robustMarkus Koller2019-06-251-1/+1
| | | | | | | | | | The check for continue_params&.key?(:to) in Projects::ImportsController caused an exception in redirect_to if this key contained a nil value. Since url_for won't add any params for an empty hash, we can just return that in continue_params if params[:continue] isn't present, and simplify the code in the controllers to check for the values we actually want to use.
* Fix N+1 problem in `JobsController#index`fix-jobs-controller-index-n-1Kamil Trzciński2019-06-191-1/+5
| | | | | | This adds missing preloads, and introduces additional n+1 matcher to look for duplicates.
* Renamed terminal_specification to channel_specificationFrancisco Javier López2019-04-041-1/+1
| | | | | | We're moving from using terminology related to terminals when we refer to Websockets connections in Workhorse. It's more appropiate a concept like channel.
* Externalize strings in projects controllersMartin Wortschack2019-03-271-1/+1
| | | | | | | - concerns - dashboard - groups - import
* Remove cancel all action in Jobs ControllerJordi Llull2019-01-071-12/+2
|
* Fixed action name in JobsControllerFrancisco Javier López2018-12-171-1/+1
|
* Add feature flag for workhorse content type calculationFrancisco Javier López2018-12-061-1/+17
|
* Merge branch 'Fix-pipeline-redirect' into 'master'Grzegorz Bizon2018-10-081-1/+7
|\ | | | | | | | | | | | | Redirect to the pipeline builds page when a build is canceled Closes #39161 See merge request gitlab-org/gitlab-ce!21595
| * Redirect to the pipeline builds page when a build is canceledEva Kadlecová2018-09-171-1/+7
| |
* | Add a new status to ci_builds.statusShinya Maeda2018-10-021-1/+1
| |
* | Add unschedule endpont to job controllerShinya Maeda2018-10-021-0/+7
| |
* | Enable even more frozen string in app/controllersgfyoung2018-09-251-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | Enables frozen string for some vestigial files as well as the following: * app/controllers/projects/**/*.rb * app/controllers/sherlock/**/*.rb * app/controllers/snippets/**/*.rb * app/controllers/users/**/*.rb Partially addresses #47424.
* | Disable existing offenses for the CodeReuse copsYorick Peterse2018-09-111-0/+4
|/ | | | | This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
* Web Terminal Ci BuildFrancisco Javier López2018-07-051-2/+20
|