v1.0.3
- Notes To Notifications
- Share Notes With Public Link
- Share Notes With Selected User
- prevent other users from editing notes when they do not own them!
Use Convert Note To Notification
to use this feature you need to install filament-alerts or use this command
composer require tomatophp/filament-alerts
then you can use this feature by adding this method to the plugin
$panel->plugin(\TomatoPHP\FilamentNotes\FilamentNotesPlugin::make()
->useNotification()
)
Use Share Note With Public Link
you can generate a public link and share it with others by allowing this feature on your provider
$panel->plugin(\TomatoPHP\FilamentNotes\FilamentNotesPlugin::make()
->useShareLink()
)
Use User Access Permissions
you can use this feature to allow only selected users to access the notes by allowing this feature on your provider
$panel->plugin(\TomatoPHP\FilamentNotes\FilamentNotesPlugin::make()
->useUserAccess()
)
Full Changelog: v1.0.2...v1.0.3