aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/actions/desktop_notification.rs
diff options
context:
space:
mode:
authorLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2024-04-23 15:55:28 +0100
committerLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2024-04-23 16:08:56 +0100
commit6c8f59502f3bb0279eae1091f19a7c0bb458a2c7 (patch)
tree22478ffe3ae68efe1d329c8ea2491d328a8e5d01 /src/actions/desktop_notification.rs
parent3c749a1add53a7eedeed5a95dfe68092bce29c42 (diff)
downloadsentrum-6c8f59502f3bb0279eae1091f19a7c0bb458a2c7.tar.gz
sentrum-6c8f59502f3bb0279eae1091f19a7c0bb458a2c7.tar.bz2
sentrum-6c8f59502f3bb0279eae1091f19a7c0bb458a2c7.zip
Add name() to Action trait
Diffstat (limited to 'src/actions/desktop_notification.rs')
-rw-r--r--src/actions/desktop_notification.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/actions/desktop_notification.rs b/src/actions/desktop_notification.rs
index d831a59..6ea89f7 100644
--- a/src/actions/desktop_notification.rs
+++ b/src/actions/desktop_notification.rs
@@ -17,6 +17,10 @@ impl<'a> DesktopNotificationAction<'a> {
#[async_trait]
impl Action<'_> for DesktopNotificationAction<'_> {
+ fn name(&self) -> &'static str {
+ "desktop_notification"
+ }
+
async fn run(&self, params: Option<&MessageParams<'_, '_>>) -> Result<()> {
use notify_rust::Notification;
Notification::new()