summaryrefslogtreecommitdiffstats
path: root/src/mastodon_client.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mastodon_client.rs')
-rw-r--r--src/mastodon_client.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mastodon_client.rs b/src/mastodon_client.rs
index d1defad..6a63c7c 100644
--- a/src/mastodon_client.rs
+++ b/src/mastodon_client.rs
@@ -120,6 +120,10 @@ pub trait MastodonClient<H: HttpSend = HttpSender> {
fn clear_notifications(&self) -> Result<Empty> {
unimplemented!("This method was not implemented");
}
+ /// POST /api/v1/notifications/dismiss
+ fn dismiss_notification(&self, id: &str) -> Result<Empty> {
+ unimplemented!("This method was not implemented");
+ }
/// GET /api/v1/accounts/:id
fn get_account(&self, id: &str) -> Result<Account> {
unimplemented!("This method was not implemented");