Merge remote-tracking branch 'origin/develop'

This commit is contained in:
snipe 2021-01-27 12:49:33 -08:00
commit 9f43d3345f

View file

@ -38,7 +38,7 @@ class UserFilesController extends Controller
$filename = 'user-' . $user->id . '-' . str_random(8); $filename = 'user-' . $user->id . '-' . str_random(8);
$filename .= '-' . str_slug($file->getClientOriginalName()) . '.' . $extension; $filename .= '-' . str_slug($file->getClientOriginalName()) . '.' . $extension;
if (!$file->move($destinationPath, $filename)) { if (!$file->move($destinationPath, $filename)) {
return JsonResponse::create(["error" => "Unabled to move file"], 500); return redirect()->back()->with('error', trans('admin/users/message.upload.invalidfiles'));
} }
//Log the uploaded file to the log //Log the uploaded file to the log
$logAction = new Actionlog(); $logAction = new Actionlog();
@ -57,10 +57,10 @@ class UserFilesController extends Controller
} }
$logActions[] = $logAction; $logActions[] = $logAction;
} }
// dd($logActions); // dd($logActions);
return JsonResponse::create($logActions); return redirect()->back()->with('success', trans('admin/users/message.upload.success'));
} }
return JsonResponse::create(["error" => "No User associated with this request"], 500); return redirect()->back()->with('error', trans('admin/users/message.upload.nofiles'));
} }