- def update
- @issue = Issue.find_by(issue_params)
- @report = @issue.reports.where(reporter_user_id: @user.id).first
- details = params[:report][:details].to_s + "||" + params[:spam].to_s + "||" + params[:offensive].to_s + "||" + params[:threat].to_s + "||" + params[:vandal].to_s + "||" + params[:other].to_s
- @report.details = details
- if @report.save!
- redirect_to root_path, notice: 'Your report was successfully updated.'
- else
- render :edit
- end
+ # If last_updated_by
+ if params[:last_updated_by] && params[:last_updated_by][0].present?
+ last_updated_by = params[:last_updated_by][0].to_s == "nil" ? nil : params[:last_updated_by][0].to_i
+ @issues = @issues.where(:updated_by => last_updated_by)
+ end
+
+ if params[:last_reported_by] && params[:last_reported_by][0].present?
+ last_reported_by = params[:last_reported_by][0].to_s == "nil" ? nil : params[:last_reported_by][0].to_i
+ @issues = @issues.where(:updated_by => last_reported_by)
+ end
+
+ redirect_to issues_path, :notice => notice if notice