discourse/app/serializers/reviewable_explanation_serializer.rb
Robin Ward bde0ef865f
FEATURE: Adds a pop up that shows a more detailed score for reviewables (#8035)
If you click a (?) icon beside the reviewable status a pop up will
appear with expanded informatio that explains how the reviewable got its
score, and how it compares to system thresholds.
2019-09-04 09:56:25 -06:00

39 lines
711 B
Ruby

# frozen_string_literal: true
require_dependency 'reviewable_score_explanation_serializer'
class ReviewableExplanationSerializer < ApplicationSerializer
attributes(
:id,
:total_score,
:scores,
:min_score_visibility,
:hide_post_score
)
has_many :scores, serializer: ReviewableScoreExplanationSerializer, embed: :objects
def id
object[:reviewable].id
end
def hide_post_score
Reviewable.score_required_to_hide_post
end
def spam_silence_score
Reviewable.spam_score_to_silence_new_user
end
def min_score_visibility
Reviewable.min_score_for_priority
end
def total_score
object[:reviewable].score
end
def scores
object[:scores]
end
end