Fix new rubocop warnings

This commit is contained in:
Tom Hughes 2023-06-06 18:45:38 +01:00
parent 339b4e739c
commit 7cdf5b0b19

View file

@ -21,7 +21,7 @@ class IssuesController < ApplicationController
@issues = Issue.visible_to(current_user).order(:updated_at => :desc)
# If search
if params[:search_by_user]&.present?
if params[:search_by_user].present?
@find_user = User.find_by(:display_name => params[:search_by_user])
if @find_user
@issues = @issues.where(:reported_user_id => @find_user.id)
@ -31,11 +31,11 @@ class IssuesController < ApplicationController
end
end
@issues = @issues.where(:status => params[:status]) if params[:status]&.present?
@issues = @issues.where(:status => params[:status]) if params[:status].present?
@issues = @issues.where(:reportable_type => params[:issue_type]) if params[:issue_type]&.present?
@issues = @issues.where(:reportable_type => params[:issue_type]) if params[:issue_type].present?
if params[:last_updated_by]&.present?
if params[:last_updated_by].present?
last_updated_by = params[:last_updated_by].to_s == "nil" ? nil : params[:last_updated_by].to_i
@issues = @issues.where(:updated_by => last_updated_by)
end