mirror of
https://github.com/snipe/snipe-it.git
synced 2026-03-29 20:04:21 +00:00
Changed directory for audits image dir
This commit is contained in:
@ -1020,7 +1020,7 @@ class AssetsController extends Controller
|
||||
$file = $log->get_src('assets');
|
||||
|
||||
if ($log->action_type =='audit') {
|
||||
$file = $log->get_src('assets/audits');
|
||||
$file = $log->get_src('audits');
|
||||
}
|
||||
|
||||
$filetype = Helper::checkUploadIsImage($file);
|
||||
@ -1328,7 +1328,7 @@ class AssetsController extends Controller
|
||||
if ($request->hasFile('image')) {
|
||||
$file = $request->file('image');
|
||||
try {
|
||||
$destinationPath = config('app.private_uploads').'/assets/audits';
|
||||
$destinationPath = config('app.private_uploads').'/audits';
|
||||
$extension = $file->getClientOriginalExtension();
|
||||
$filename = 'audit-'.$asset->id.'-'.str_slug(basename($file->getClientOriginalName(), '.'.$extension)).'.'.$extension;
|
||||
$file->move($destinationPath, $filename);
|
||||
|
||||
Reference in New Issue
Block a user