Skip to content

Commit 8774c2e

Browse files
committed
refactor(rbac): remove interest permissions
- Removed user-owned interest permissions from the Permissions class - These permissions are no longer used in the application - This change simplifies the permissions structure and reduces redundancy
1 parent db55ea2 commit 8774c2e

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

lib/src/rbac/permissions.dart

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -96,19 +96,6 @@ abstract class Permissions {
9696
static const String pushNotificationDeviceDeleteOwned =
9797
'push_notification_device.delete_owned';
9898

99-
// Interest Permissions (User-owned)
100-
/// Allows creating a new interest for the authenticated user.
101-
static const String interestCreateOwned = 'interest.create_owned';
102-
103-
/// Allows reading the authenticated user's own interests.
104-
static const String interestReadOwned = 'interest.read_owned';
105-
106-
/// Allows updating the authenticated user's own interests.
107-
static const String interestUpdateOwned = 'interest.update_owned';
108-
109-
/// Allows deleting the authenticated user's own interests.
110-
static const String interestDeleteOwned = 'interest.delete_owned';
111-
11299
// In-App Notification Permissions (User-owned)
113100
/// Allows reading the user's own in-app notifications.
114101
static const String inAppNotificationReadOwned =

0 commit comments

Comments
 (0)