summaryrefslogtreecommitdiff
path: root/app/controllers/admin/jobs_controller.rb
Commit message (Collapse)AuthorAgeFilesLines
* Enable frozen string in app/controllers/**/*.rbrepo-forks/gitlab-ce-frozen-string-app-controllergfyoung2018-09-181-0/+2
| | | | | | | | | | | | Enables frozen string for the following: * app/controllers/*.rb * app/controllers/admin/**/*.rb * app/controllers/boards/**/*.rb * app/controllers/ci/**/*.rb * app/controllers/concerns/**/*.rb Partially addresses #47424.
* Disable existing offenses for the CodeReuse copsYorick Peterse2018-09-111-0/+2
| | | | | This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
* Fix /admin/jobs failing to load due to statement timeoutStan Hu2018-07-301-1/+1
| | | | | | | | The `ORDER BY created_at DESC` clause causes a sequential scan because there is no index on the `created_at` column. We can sort by `id` or by `updated_at` to make things fast. Closes #49767
* Updates from `rubocop -a`Lin Jen-Shin2018-07-091-1/+1
|
* Add modal for stopping jobs in admin areaWinnie Hellmann2018-01-181-1/+1
|
* Rename BuildsController to JobsControllerLin Jen-Shin2017-05-171-0/+25
Rename other URL generators admin_builds_path -> admin_jobs_path Fix tests and more renaming Fix more tests Also change build_id to job_id in the controller