diff options
author | Semyon Pupkov <mail@semyonpupkov.com> | 2018-09-20 21:47:34 +0500 |
---|---|---|
committer | Semyon Pupkov <mail@semyonpupkov.com> | 2018-09-20 21:47:34 +0500 |
commit | 6c31b607de3528f78f340a2bc5bfdb163378981c (patch) | |
tree | 119877c77cef8239c17c09005b5378e919bbf403 /lib/api | |
parent | 7d6c66381cffc211a0de87911d037b415f8d1fa3 (diff) | |
download | gitlab-ce-6c31b607de3528f78f340a2bc5bfdb163378981c.tar.gz |
Fix SpaceBeforeFirstArg cop
Diffstat (limited to 'lib/api')
-rw-r--r-- | lib/api/runners.rb | 2 |
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) |