Fix new rubocop warnings
This commit is contained in:
parent
339b4e739c
commit
7cdf5b0b19
1 changed files with 4 additions and 4 deletions
|
@ -21,7 +21,7 @@ class IssuesController < ApplicationController
|
||||||
@issues = Issue.visible_to(current_user).order(:updated_at => :desc)
|
@issues = Issue.visible_to(current_user).order(:updated_at => :desc)
|
||||||
|
|
||||||
# If search
|
# 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])
|
@find_user = User.find_by(:display_name => params[:search_by_user])
|
||||||
if @find_user
|
if @find_user
|
||||||
@issues = @issues.where(:reported_user_id => @find_user.id)
|
@issues = @issues.where(:reported_user_id => @find_user.id)
|
||||||
|
@ -31,11 +31,11 @@ class IssuesController < ApplicationController
|
||||||
end
|
end
|
||||||
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
|
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)
|
@issues = @issues.where(:updated_by => last_updated_by)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue