mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-02 08:21:09 -08:00
Merge branch 'develop'
This commit is contained in:
commit
088eb3da14
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue