Skip to content
Snippets Groups Projects
Commit f43cb6e7 authored by Nermin Vehabovic's avatar Nermin Vehabovic
Browse files

Fixed: Warnings from static code analysis

parent ff671366
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -397,13 +397,11 @@ module API
end
# rubocop: enable CodeReuse/ActiveRecord
 
# rubocop: disable CodeReuse/ActiveRecord
def order_options_with_tie_breaker
{params[:order_by] => params[:sort]}.tap do |order|
order['id'] ||= 'desc'
end
order_options = { params[:order_by] => params[:sort] }
order_options['id'] ||= 'desc'
order_options
end
# rubocop: enable CodeReuse/ActiveRecord
 
def project_finder_params
finder_params = { without_deleted: true }
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment