Add search interface for mod actions

This commit is contained in:
BrokenEagle
2018-01-13 19:51:15 -08:00
parent 3c45273694
commit fcdc61f111
3 changed files with 16 additions and 0 deletions

View File

@@ -54,6 +54,14 @@ class ModAction < ApplicationRecord
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
if params[:category].present?
q = q.attribute_matches(:category, params[:category])
end
q
end