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 f54ebec commit 347c5c7Copy full SHA for 347c5c7
lib/src/rbac/permissions.dart
@@ -28,6 +28,12 @@ abstract class Permissions {
28
static const String countryUpdate = 'country.update';
29
static const String countryDelete = 'country.delete';
30
31
+ // Language Permissions
32
+ static const String languageCreate = 'language.create';
33
+ static const String languageRead = 'language.read';
34
+ static const String languageUpdate = 'language.update';
35
+ static const String languageDelete = 'language.delete';
36
+
37
// User Permissions
38
// Allows reading any user profile (e.g., for admin or public profiles)
39
static const String userRead = 'user.read';
0 commit comments