aboutsummaryrefslogtreecommitdiff
blob: b6c27a0b2dc97bf592c27455104bae4838280d4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# notifications.py - endorsement endpoints

from .versions import _DICT_VERSION_ACCOUNT
from .utility import api_version

from .internals import Mastodon as Internals

class Mastodon(Internals):    
    ###
    # Reading data: Endorsements
    ###
    @api_version("2.5.0", "2.5.0", _DICT_VERSION_ACCOUNT)
    def endorsements(self):
        """
        Fetch list of users endorsed by the logged-in user.

        Returns a list of :ref:`account dicts <account dicts>`.
        """
        return self.__api_request('GET', '/api/v1/endorsements')
Powered by cgit v1.2.3 (git 2.41.0)