1
0
mirror of https://github.com/cjango/dcat-vue.git synced 2025-12-06 22:40:03 +08:00
This commit is contained in:
weiwait
2023-01-05 18:10:59 +08:00
parent 2063e2d395
commit 3ec466e9ee
2 changed files with 6 additions and 0 deletions

View File

@@ -9,12 +9,15 @@ use Illuminate\Support\Facades\Storage;
use OSS\Core\OssException; use OSS\Core\OssException;
use OSS\Model\CorsConfig; use OSS\Model\CorsConfig;
use OSS\Model\CorsRule; use OSS\Model\CorsRule;
use Weiwait\DcatVue\Helper;
class FilesystemConfig extends Form class FilesystemConfig extends Form
{ {
public function handle(array $input): JsonResponse public function handle(array $input): JsonResponse
{ {
try { try {
Helper::injectFilesystemConfig(collect($input));
$this->ossHandler($input); $this->ossHandler($input);
admin_setting(['weiwait_filesystem' => $input]); admin_setting(['weiwait_filesystem' => $input]);

View File

@@ -73,4 +73,7 @@ return [
'2.5.2' => [ '2.5.2' => [
'一些优化', '一些优化',
], ],
'2.5.3' => [
'一些优化',
],
]; ];