We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8b0c2b commit e07f7dfCopy full SHA for e07f7df
phpmyfaq/src/phpMyFAQ/Enums/AdminLogType.php
@@ -54,4 +54,17 @@ enum AdminLogType: string
54
55
// Configuration
56
case CONFIG_CHANGE = 'config-change';
57
+
58
+ // User management
59
+ case USER_ADD = 'user-add';
60
+ case USER_EDIT = 'user-edit';
61
+ case USER_DELETE = 'user-delete';
62
+ case USER_CHANGE_PASSWORD = 'user-change-password';
63
+ case USER_CHANGE_PERMISSIONS = 'user-change-permissions';
64
65
+ // Group management
66
+ case GROUP_ADD = 'group-add';
67
+ case GROUP_EDIT = 'group-edit';
68
+ case GROUP_DELETE = 'group-delete';
69
+ case GROUP_CHANGE_PERMISSIONS = 'group-change-permissions';
70
}
0 commit comments