This commit is contained in:
Yuki 2015-04-30 05:52:24 +05:30
parent 832dc1c1e4
commit 1c80c70dd9
4 changed files with 5 additions and 5 deletions

View File

@ -17,7 +17,7 @@ class Answer < ActiveRecord::Base
before_destroy do
# mark a report as deleted if it exists
rep = Report.where(target_id: self.id, type: Reports::Answer)
rep = Report.where(target_id: self.id, type: 'Reports::Answer')
rep.each do |r|
unless r.nil?
r.deleted = true

View File

@ -14,7 +14,7 @@ class Comment < ActiveRecord::Base
end
before_destroy do
rep = Report.where(target_id: self.id, type: Reports::Comment)
rep = Report.where(target_id: self.id, type: 'Reports::Comment')
rep.each do |r|
unless r.nil?
r.deleted = true

View File

@ -6,7 +6,7 @@ class Question < ActiveRecord::Base
validates :content, length: { maximum: 255 }
before_destroy do
rep = Report.where(target_id: self.id, type: Reports::Question)
rep = Report.where(target_id: self.id, type: 'Reports::Question')
rep.each do |r|
unless r.nil?
r.deleted = true

View File

@ -61,7 +61,7 @@ class User < ActiveRecord::Base
# when a user deleted himself, all reports relating to the user are invalid
before_destroy do
rep = Report.where(target_id: self.id, type: Reports::User)
rep = Report.where(target_id: self.id, type: 'Reports::User')
rep.each do |r|
unless r.nil?
r.deleted = true
@ -161,7 +161,7 @@ class User < ActiveRecord::Base
# region stuff used for reporting/moderation
def report(object, reason = nil)
existing = Report.find_by(target_id: object.id, user_id: self.id, deleted: false)
existing = Report.find_by(type: "Reports::#{object.class}", target_id: object.id, user_id: self.id, deleted: false)
if existing.nil?
Report.create(type: "Reports::#{object.class}", target_id: object.id, user_id: self.id, reason: reason)
elsif not reason.nil? and reason.length > 0