mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-14 23:11:56 -05:00
21 lines
316 B
TypeScript
21 lines
316 B
TypeScript
export const PLUS_UPVOTE = 1;
|
|
export const PLUS_DOWNVOTE = -1;
|
|
|
|
export const PLUS_VOTING_CRITERIA = {
|
|
1: {
|
|
passPercentage: 60,
|
|
failPercentage: 40,
|
|
quota: 50,
|
|
},
|
|
2: {
|
|
passPercentage: 60,
|
|
failPercentage: 40,
|
|
quota: 75,
|
|
},
|
|
3: {
|
|
passPercentage: 60,
|
|
failPercentage: 40,
|
|
quota: 150,
|
|
},
|
|
} as const;
|