diff options
-rw-r--r-- | mastodon/Mastodon.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py index 64450b6..3851fbf 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py | |||
@@ -982,10 +982,13 @@ class Mastodon: | |||
982 | # Reading data: Notifications | 982 | # Reading data: Notifications |
983 | ### | 983 | ### |
984 | @api_version("1.0.0", "2.9.0", __DICT_VERSION_NOTIFICATION) | 984 | @api_version("1.0.0", "2.9.0", __DICT_VERSION_NOTIFICATION) |
985 | def notifications(self, id=None, account_id=None, max_id=None, min_id=None, since_id=None, limit=None, mentions_only=None): | 985 | def notifications(self, id=None, account_id=None, max_id=None, min_id=None, since_id=None, limit=None, exclude_types=None): |
986 | """ | 986 | """ |
987 | Fetch notifications (mentions, favourites, reblogs, follows) for the logged-in | 987 | Fetch notifications (mentions, favourites, reblogs, follows) for the logged-in |
988 | user. Pass `account_id` to get only notifications originating from the given account. | 988 | user. Pass `account_id` to get only notifications originating from the given account. |
989 | |||
990 | Parameter `exclude_types` is an array of the following `follow`, `favourite`, `reblog`, | ||
991 | `mention`, `poll`, `follow_request` | ||
989 | 992 | ||
990 | Can be passed an `id` to fetch a single notification. | 993 | Can be passed an `id` to fetch a single notification. |
991 | 994 | ||