mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 16:34:31 +08:00
FIX: Show topic titles in deleted-posts (#19610)
Show topic titles in deleted-posts
This commit is contained in:
@ -52,15 +52,15 @@ class AdminUserActionSerializer < ApplicationSerializer
|
||||
end
|
||||
|
||||
def slug
|
||||
object.topic&.slug
|
||||
topic&.slug
|
||||
end
|
||||
|
||||
def title
|
||||
object.topic&.title
|
||||
topic&.title
|
||||
end
|
||||
|
||||
def category_id
|
||||
object.topic&.category_id
|
||||
topic&.category_id
|
||||
end
|
||||
|
||||
def moderator_action
|
||||
@ -80,4 +80,14 @@ class AdminUserActionSerializer < ApplicationSerializer
|
||||
.select { |ua| [UserAction::REPLY, UserAction::RESPONSE].include? ua.action_type }
|
||||
.first.try(:action_type)
|
||||
end
|
||||
|
||||
# we need this to handle deleted topics which aren't loaded via
|
||||
# Topic.unscoped do
|
||||
# Post.includes(:topic)
|
||||
# end
|
||||
# because Rails 4 "unscoped" support is still bugged (cf. https://github.com/rails/rails/issues/13775)
|
||||
def topic
|
||||
return @topic if @topic
|
||||
@topic = object.topic || Topic.with_deleted.find_by_id(object.topic_id)
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user