mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-03 13:46:26 +08:00
15 lines
298 B
Ruby
15 lines
298 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ReviewableScoreExplanationSerializer < ApplicationSerializer
|
|
attributes(
|
|
:user_id,
|
|
:type_bonus,
|
|
:trust_level_bonus,
|
|
:take_action_bonus,
|
|
:flags_agreed,
|
|
:flags_disagreed,
|
|
:flags_ignored,
|
|
:user_accuracy_bonus,
|
|
:score,
|
|
)
|
|
end
|