Skip to content

Commit

Permalink
Fix incorrect authorize
Browse files Browse the repository at this point in the history
  • Loading branch information
rmartinoscar committed Feb 10, 2025
1 parent cba4cf1 commit 8775d92
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public function table(Table $table): Table
->bulkActions([
BulkActionGroup::make([
DeleteBulkAction::make()
->authorize(fn () => auth()->user()->can('delete allocation')),
->authorize(fn () => auth()->user()->can('update node')),
]),
]);
}
Expand Down

0 comments on commit 8775d92

Please sign in to comment.