From ea8784215dec31a9e580d0cf7c982d02708e2b7a Mon Sep 17 00:00:00 2001 From: Paul Date: Sat, 13 Nov 2021 19:43:08 +0000 Subject: [PATCH] feat: add new badges [skip ci] --- src/database/entities/user.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/database/entities/user.rs b/src/database/entities/user.rs index 8d06463f..060d4af9 100644 --- a/src/database/entities/user.rs +++ b/src/database/entities/user.rs @@ -68,8 +68,12 @@ pub enum Badges { Translator = 2, Supporter = 4, ResponsibleDisclosure = 8, - RevoltTeam = 16, + Founder = 16, + PlatformModeration = 32, + ActiveSupporter = 64, + Paw = 128, EarlyAdopter = 256, + ReservedRelevantJokeBadge1 = 512 } impl_op_ex_commutative!(+ |a: &i32, b: &Badges| -> i32 { *a | *b as i32 });