exclude bulk actions#2240
Merged
notAreYouScared merged 2 commits intopelican-dev:mainfrom Feb 16, 2026
Merged
Conversation
📝 WalkthroughWalkthroughDeleteBulkAction invocations in several Filament resource table configurations were changed to pass the identifier 'exclude_bulk_delete' where they previously had no arguments; no other behavioral changes were introduced. Changes
Possibly related PRs
🚥 Pre-merge checks | ✅ 1 | ❌ 3❌ Failed checks (1 warning, 2 inconclusive)
✅ Passed checks (1 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. No actionable comments were generated in the recent review. 🎉 Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@app/Filament/Admin/Resources/Roles/RoleResource.php`:
- Line 109: The bulk-delete action was only renamed via
DeleteBulkAction::make('exclude_bulk_delete') which does not hide or disable it;
update the Roles resource to actually remove or hide the bulk delete by either
removing the BulkActionGroup that contains DeleteBulkAction, or call the
action's visibility/authorization helpers (e.g., use ->hidden(fn() => true) or
->authorization(fn($user) => false) on the DeleteBulkAction instance) so the
delete button is not shown for the RoleResource list; refer to
DeleteBulkAction::make(...) and the BulkActionGroup in the Roles resource and
the CanModifyTable trait when making this change.
notAreYouScared
approved these changes
Feb 16, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.