Documented report dicts
This commit is contained in:
pare
c072b2e247
commit
e1a1592575
S'han modificat 2 arxius amb 17 adicions i 0 eliminacions
|
@ -329,6 +329,20 @@ Instance dicts
|
|||
'urls': # Additional URLs dict, presently only 'streaming_api' with the stream websocket address.
|
||||
}
|
||||
|
||||
Report dicts
|
||||
~~~~~~~~~~~~
|
||||
.. code-block:: python
|
||||
|
||||
mastodon.reports()[0]
|
||||
# Returns the folowing dictionary
|
||||
{
|
||||
'id': # Numerical id of the report
|
||||
'action_taken': # True if a moderator or admin has processed the
|
||||
# report, False otherwise. Note that no indication as to what action was taken is given
|
||||
# and that an admin simply marking the report as processed and not doing anything else
|
||||
# will set this field to True.
|
||||
}
|
||||
|
||||
App registration and user authentication
|
||||
----------------------------------------
|
||||
Before you can use the mastodon API, you have to register your
|
||||
|
|
|
@ -470,6 +470,9 @@ class Mastodon:
|
|||
Fetch a list of reports made by the authenticated user.
|
||||
|
||||
Returns a list of report dicts.
|
||||
|
||||
Warning: According to the official API documentation, this
|
||||
method is to be treated as not finalized as of Mastodon 2.0.0.
|
||||
"""
|
||||
return self.__api_request('GET', '/api/v1/reports')
|
||||
|
||||
|
|
Loading…
Referencia en una nova incidència