Merge pull request #15555 from snipe/fixes/user_file_upload
Fixed case on `$logAction` for user file upload
This commit is contained in:
commit
ba12204842
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ class UserFilesController extends Controller
|
|||
$logAction = new Actionlog();
|
||||
$logAction->item_id = $user->id;
|
||||
$logAction->item_type = User::class;
|
||||
$logaction->created_by = auth()->id();
|
||||
$logAction->created_by = auth()->id();
|
||||
$logAction->note = $request->input('notes');
|
||||
$logAction->target_id = null;
|
||||
$logAction->created_at = date("Y-m-d H:i:s");
|
||||
|
|
Loading…
Add table
Reference in a new issue