mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-29 03:10:51 +00:00
- team members fix
This commit is contained in:
@@ -18,7 +18,7 @@ class StoreFileChunksAction
|
||||
$file = $request->file('file');
|
||||
|
||||
// Get chunk name
|
||||
$name = $file->getClientOriginalName() . '.' . $request->input('extension');
|
||||
$name = $file->getClientOriginalName();
|
||||
|
||||
// Get chunk file path
|
||||
$path = Storage::disk('local')->path("chunks/$name");
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
<?php
|
||||
namespace Domain\Localization\Actions;
|
||||
|
||||
use Artisan;
|
||||
use DB;
|
||||
|
||||
class UpdateLanguageTranslationsAction
|
||||
@@ -14,5 +15,7 @@ class UpdateLanguageTranslationsAction
|
||||
->where('key', $item[1])
|
||||
->update(['value' => $item[0]])
|
||||
);
|
||||
|
||||
Artisan::call('cache:clear');
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user