Skip to content

Commit 9c43818

Browse files
committed
Stub CloseNotification method
1 parent 2c9c157 commit 9c43818

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/bin/notification-proxy-client.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,10 @@ impl Server {
7575
async fn get_capabilities(&self) -> zbus::fdo::Result<(Vec<String>,)> {
7676
Ok((vec!["persistence".to_owned(), "actions".to_owned(), "body".to_owned()],))
7777
}
78+
async fn close_notification(&self, _id: u32) -> zbus::fdo::Result<()> {
79+
// FIXME proxy to server (which will proxy back NotificationClosed)
80+
Ok(())
81+
}
7882
#[zbus(signal)]
7983
async fn notification_closed(
8084
&self,

0 commit comments

Comments
 (0)