Model#search: factor out username search.

This commit is contained in:
evazion
2019-08-19 17:58:23 -05:00
parent 9a3e9747d8
commit c3ad7f6112
26 changed files with 41 additions and 189 deletions

View File

@@ -56,14 +56,7 @@ class ModAction < ApplicationRecord
q = super
q = q.attribute_matches(:description, params[:description_matches])
if params[:creator_id].present?
q = q.where("creator_id = ?", params[:creator_id].to_i)
end
if params[:creator_name].present?
q = q.where("creator_id = (select _.id from users _ where lower(_.name) = ?)", params[:creator_name].mb_chars.downcase)
end
q = q.search_user_attribute(:creator, params)
if params[:category].present?
q = q.attribute_matches(:category, params[:category])