Skip to content

Commit

Permalink
Fix new rubocop warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhughes committed Jun 6, 2023
1 parent 339b4e7 commit 7cdf5b0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/controllers/issues_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def index
@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)
Expand All @@ -31,11 +31,11 @@ def index
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
Expand Down

0 comments on commit 7cdf5b0

Please sign in to comment.