discourse/app/serializers/web_hook_post_serializer.rb

32 lines
515 B
Ruby

class WebHookPostSerializer < PostSerializer
attributes :topic_posts_count
def include_topic_title?
true
end
%i{
can_view
can_edit
can_delete
can_recover
can_wiki
actions_summary
can_view_edit_history
yours
primary_group_flair_url
primary_group_flair_bg_color
primary_group_flair_color
}.each do |attr|
define_method("include_#{attr}?") do
false
end
end
def topic_posts_count
object.topic ? object.topic.posts_count : 0
end
end