mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-29 11:15:58 +00:00
event implementation
This commit is contained in:
@@ -50,8 +50,8 @@ class SignFlowTest extends TestCase
|
||||
]);
|
||||
|
||||
$this->assertDatabaseHas('user_settings', [
|
||||
'name' => 'John Doe',
|
||||
'storage_capacity' => 12,
|
||||
'name' => 'John Doe',
|
||||
'max_storage_amount' => 12,
|
||||
]);
|
||||
|
||||
Storage::disk('local')
|
||||
|
||||
@@ -140,12 +140,12 @@ class UserAccountTest extends TestCase
|
||||
'id' => (string) $user->id,
|
||||
'type' => 'user',
|
||||
'attributes' => [
|
||||
'storage_capacity' => '5',
|
||||
'email' => $user->email,
|
||||
'role' => $user->role,
|
||||
'two_factor_authentication' => false,
|
||||
'folders' => [],
|
||||
'storage' => [
|
||||
'max_storage_amount' => '5',
|
||||
'email' => $user->email,
|
||||
'role' => $user->role,
|
||||
'two_factor_authentication' => false,
|
||||
'folders' => [],
|
||||
'storage' => [
|
||||
'used' => 0,
|
||||
'used_formatted' => '0.00%',
|
||||
'capacity' => '5',
|
||||
|
||||
Reference in New Issue
Block a user