Changing HideDownvotes to Score.

This commit is contained in:
Dessalines 2024-02-13 13:29:23 -05:00
parent a628af6256
commit 9d88b62d4e
2 changed files with 3 additions and 3 deletions

View File

@ -174,8 +174,8 @@ pub enum VoteDisplayMode {
ScoreAndUpvotePercentage,
/// Shows the upvote percentage only.
UpvotePercentage,
/// Shows the score, but hides downvotes.
HideDownvotes,
/// Shows the score, but hides everything else.
Score,
/// Hides all scores and votes.
HideAll,
}

View File

@ -2,7 +2,7 @@ CREATE TYPE vote_display_mode_enum AS enum (
'Full',
'ScoreAndUpvotePercentage',
'UpvotePercentage',
'HideDownvotes',
'Score',
'HideAll'
);