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
path: root/lib/api
diff options
context:
space:
mode:
authorSemyon Pupkov <mail@semyonpupkov.com>2018-09-20 19:47:34 +0300
committerSemyon Pupkov <mail@semyonpupkov.com>2018-09-20 19:47:34 +0300
commit6c31b607de3528f78f340a2bc5bfdb163378981c (patch)
tree119877c77cef8239c17c09005b5378e919bbf403 /lib/api
parent7d6c66381cffc211a0de87911d037b415f8d1fa3 (diff)
Fix SpaceBeforeFirstArg cop
Diffstat (limited to 'lib/api')
-rw-r--r--lib/api/runners.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/runners.rb b/lib/api/runners.rb
index 30abd0b63e9..15faf36ce0a 100644
--- a/lib/api/runners.rb
+++ b/lib/api/runners.rb
@@ -94,7 +94,7 @@ module API
optional :status, type: String, desc: 'Status of the job', values: Ci::Build::AVAILABLE_STATUSES
use :pagination
end
- get ':id/jobs' do
+ get ':id/jobs' do
runner = get_runner(params[:id])
authenticate_list_runners_jobs!(runner)