mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-05-30 07:44:41 +00:00
fixed issue in backblaze connection test
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'version' => '2.0.18',
|
'version' => '2.0.18.1',
|
||||||
|
|
||||||
'is_demo' => env('APP_DEMO', false),
|
'is_demo' => env('APP_DEMO', false),
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Domain\Settings\Actions;
|
namespace Domain\Settings\Actions;
|
||||||
|
|
||||||
use Storage;
|
use Storage;
|
||||||
@@ -14,12 +15,13 @@ class TestS3ConnectionAction
|
|||||||
// Set temporary s3 connection
|
// Set temporary s3 connection
|
||||||
config([
|
config([
|
||||||
'filesystems.disks.s3' => [
|
'filesystems.disks.s3' => [
|
||||||
'driver' => 's3',
|
'driver' => 's3',
|
||||||
'key' => $credentials->key,
|
'key' => $credentials->key,
|
||||||
'secret' => $credentials->secret,
|
'secret' => $credentials->secret,
|
||||||
'region' => $credentials->region,
|
'region' => $credentials->region,
|
||||||
'bucket' => $credentials->bucket,
|
'bucket' => $credentials->bucket,
|
||||||
'endpoint' => $credentials->endpoint,
|
'endpoint' => $credentials->endpoint,
|
||||||
|
'visibility' => 'private',
|
||||||
],
|
],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user