Skip to content

v1.0.3

Compare
Choose a tag to compare
@3x1io 3x1io released this 22 Jul 12:41
· 28 commits to master since this release
  • 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