aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mastodon/endorsements.py')
-rw-r--r--mastodon/endorsements.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/mastodon/endorsements.py b/mastodon/endorsements.py
new file mode 100644
index 0000000..b6c27a0
--- /dev/null
+++ b/mastodon/endorsements.py
@@ -0,0 +1,19 @@
1# notifications.py - endorsement endpoints
2
3from .versions import _DICT_VERSION_ACCOUNT
4from .utility import api_version
5
6from .internals import Mastodon as Internals
7
8class Mastodon(Internals):
9 ###
10 # Reading data: Endorsements
11 ###
12 @api_version("2.5.0", "2.5.0", _DICT_VERSION_ACCOUNT)
13 def endorsements(self):
14 """
15 Fetch list of users endorsed by the logged-in user.
16
17 Returns a list of :ref:`account dicts <account dicts>`.
18 """
19 return self.__api_request('GET', '/api/v1/endorsements')
Powered by cgit v1.2.3 (git 2.41.0)