From 872d7a6b931418c9d3eba01a2976c0e88d730342 Mon Sep 17 00:00:00 2001 From: Charlie Cheesman Date: Sun, 19 May 2024 16:01:27 +0100 Subject: [PATCH] disable duplicate branch error --- app/controllers/jobs_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/jobs_controller.rb b/app/controllers/jobs_controller.rb index feed1c55..f18e8704 100644 --- a/app/controllers/jobs_controller.rb +++ b/app/controllers/jobs_controller.rb @@ -43,7 +43,7 @@ def sort_order(sort_param) 'jobs.created_at DESC' when 'created_at_asc' 'jobs.created_at ASC' - else + else # rubocop:disable Lint/DuplicateBranch 'jobs.created_at DESC' end end