Add commenter:<any|none> metatags.

This commit is contained in:
evazion
2017-04-25 18:04:40 -05:00
parent 69d9cf3927
commit b0626a9124
2 changed files with 16 additions and 3 deletions

View File

@@ -443,8 +443,15 @@ class Tag < ActiveRecord::Base
when "commenter", "comm"
q[:commenter_ids] ||= []
user_id = User.name_to_id($2)
q[:commenter_ids] << user_id unless user_id.blank?
if $2 == "none"
q[:commenter_ids] << "none"
elsif $2 == "any"
q[:commenter_ids] << "any"
else
user_id = User.name_to_id($2)
q[:commenter_ids] << user_id unless user_id.blank?
end
when "noter"
q[:noter_ids] ||= []