diff options
| author | ilotterytea <iltsu@alright.party> | 2025-12-04 01:26:30 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-12-04 01:26:30 +0500 |
| commit | 428998889e9bb60c7dc46388184b07c489ddaeb2 (patch) | |
| tree | 872a11239eebbf930c85d846f7cec9f828a43ab5 /bot/src/schemas | |
| parent | 638622d66dbe58ff96b7d1c2c6ec4b040b27da6d (diff) | |
feat: trusted users
Diffstat (limited to 'bot/src/schemas')
| -rw-r--r-- | bot/src/schemas/user.hpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/bot/src/schemas/user.hpp b/bot/src/schemas/user.hpp index ee9bd10..2b8de81 100644 --- a/bot/src/schemas/user.hpp +++ b/bot/src/schemas/user.hpp @@ -50,7 +50,14 @@ namespace bot::schemas { std::optional<std::chrono::system_clock::time_point> opted_out_at; }; - enum PermissionLevel { SUSPENDED, USER, VIP, MODERATOR, BROADCASTER }; + enum PermissionLevel { + SUSPENDED, + USER, + VIP, + MODERATOR, + BROADCASTER, + TRUSTED = 50 + }; class UserRights { public: |
