Skip to content

Commit

Permalink
Merge pull request #15845 from snipe/bug/sc-27523
Browse files Browse the repository at this point in the history
Fixed variable name to correctly log created_by and date for bulk user delete/checkin
  • Loading branch information
snipe authored Nov 19, 2024
2 parents 8f72231 + 15a31bd commit d576016
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/Users/BulkUsersController.php
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ protected function logItemCheckinAndDelete($items, $itemType)
$logAction->item_type = $itemType;
$logAction->target_id = $item->assigned_to;
$logAction->target_type = User::class;
$logAction->created_at = auth()->id();
$logAction->created_by = auth()->id();
$logAction->note = 'Bulk checkin items';
$logAction->logaction('checkin from');
}
Expand Down

0 comments on commit d576016

Please sign in to comment.