Fixes for v12 power levels

This commit is contained in:
Tobias Fella
2025-12-25 22:29:07 +01:00
committed by Tobias Fella
parent 82f54b4f2c
commit 657c8a0dcd
4 changed files with 15 additions and 3 deletions

View File

@@ -31,10 +31,12 @@ public:
enum Level {
Member, /**< A basic member. */
Moderator, /**< A moderator with enhanced powers. */
Admin, /**< The highest power level in the room. */
Admin, /**< Power level 100. */
Owner, /**< Power level 150. */
Mute, /**< The level to remove posting privileges. */
NUMLevels,
Custom, /**< A non-standard value. Intentionally after NUMLevels so it doesn't appear in the model. */
Creator, /**< The user creating the (co-)creating the room. */
};
Q_ENUM(Level);