Skip to content

Commit

Permalink
Merge pull request #1 from ludndev/refactor/update-config
Browse files Browse the repository at this point in the history
refactor(config): add default config in filament-edit-profile.php and…
  • Loading branch information
ludndev authored Dec 1, 2024
2 parents 34bb51a + 67ef0f3 commit 25b4c77
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ If needed you can define the disk and visibility of the avatar image. In the con

```php
return [
'disk' => 's3',
'visibility' => 'public',
'disk' => env('FILESYSTEM_DISK', 'public'),
'visibility' => 'public', // or replace by filesystem disk visibility with fallback value
];
```

Expand Down
3 changes: 2 additions & 1 deletion config/filament-edit-profile.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?php

return [

'disk' => env('FILESYSTEM_DISK', 'public'),
'visibility' => 'public', // or replace by filesystem disk visibility with fallback value
];

0 comments on commit 25b4c77

Please sign in to comment.