Releases: tomatophp/filament-media-manager
Releases · tomatophp/filament-media-manager
v1.1.3
v1.1.2
- add filament-plugin integration
Full Changelog: v1.1.1...v1.1.2
v1.1.1
What's Changed
- russian localization by @tlegenbayangali in #14
- Refactor vendor publish and Artisan commands to prevent errors by @mvd81 in #16
New Contributors
- @tlegenbayangali made their first contribution in #14
- @mvd81 made their first contribution in #16
Full Changelog: v1.1.0...v1.1.1
v1.1.0
Allow User Access
now you can allow user to access selected folder and restract user to access each other folders if the folder is not public on /app/Providers/Filament/AdminPanelProvider.php
->plugin(
\TomatoPHP\FilamentMediaManager\FilamentMediaManagerPlugin::make()
->allowUserAccess()
)
NOTE don't forget to migrate after update the plugin
Folders API
now you can access your media and folders using API you have 2 endpoints
/api/folders
to get all folders/api/folders/{id}
to get folder by id with sub folders and media files
to allow this feature you need to publish the config file by use this command
php artisan vendor:publish --tag="filament-media-manager-config"
then you can set api.active
to true
on the config file
'api' => [
"active" => true,
],
Full Changelog: v1.0.10...v1.1.0
v1.0.10
v1.0.9
v1.0.8
v1.0.7
v1.0.6
fix multi types
Full Changelog: v1.0.5...v1.0.6
v1.0.5
remove a link from the custom preview
Full Changelog: v1.0.4...v1.0.5