aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz Diener <[email protected]>2017-12-13 22:33:29 +0100
committerLorenz Diener <[email protected]>2017-12-13 22:33:29 +0100
commitafaab2b8743a11f2a8567873df8ae6ed7873ebb5 (patch)
tree7081e22d39df24bcf9ae8cacef76c75dd939d64d /mastodon/Mastodon.py
parent0b5c0ae5ccb61a42ed19ee9c5b46de65979b9060 (diff)
downloadmastodon.py-afaab2b8743a11f2a8567873df8ae6ed7873ebb5.tar.gz
Document list endpoints
Diffstat (limited to 'mastodon/Mastodon.py')
-rw-r--r--mastodon/Mastodon.py12
1 files changed, 2 insertions, 10 deletions
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py
index 3b02881..f15ee23 100644
--- a/mastodon/Mastodon.py
+++ b/mastodon/Mastodon.py
@@ -1106,14 +1106,6 @@ class Mastodon:
1106 self.__api_request('DELETE', '/api/v1/lists/{0}'.format(id)) 1106 self.__api_request('DELETE', '/api/v1/lists/{0}'.format(id))
1107 1107
1108 @api_version("2.1.0") 1108 @api_version("2.1.0")
1109 def list_delete(self, id):
1110 """
1111 Delete a list.
1112 """
1113 id = self.__unpack_id(id)
1114 self.__api_request('DELETE', '/api/v1/lists/{0}'.format(id))
1115
1116 @api_version("2.1.0")
1117 def list_accounts_add(self, id, account_ids): 1109 def list_accounts_add(self, id, account_ids):
1118 """ 1110 """
1119 Add the account(s) given in `account_ids` to the list. 1111 Add the account(s) given in `account_ids` to the list.
@@ -1125,7 +1117,7 @@ class Mastodon:
1125 account_ids = list(map(lambda x: self.__unpack_id(x), account_ids)) 1117 account_ids = list(map(lambda x: self.__unpack_id(x), account_ids))
1126 1118
1127 params = self.__generate_params(locals(), ['id']) 1119 params = self.__generate_params(locals(), ['id'])
1128 return self.__api_request('POST', '/api/v1/lists/{0}/accounts'.format(id), params) 1120 self.__api_request('POST', '/api/v1/lists/{0}/accounts'.format(id), params)
1129 1121
1130 @api_version("2.1.0") 1122 @api_version("2.1.0")
1131 def list_accounts_delete(self, id, account_ids): 1123 def list_accounts_delete(self, id, account_ids):
@@ -1139,7 +1131,7 @@ class Mastodon:
1139 account_ids = list(map(lambda x: self.__unpack_id(x), account_ids)) 1131 account_ids = list(map(lambda x: self.__unpack_id(x), account_ids))
1140 1132
1141 params = self.__generate_params(locals(), ['id']) 1133 params = self.__generate_params(locals(), ['id'])
1142 return self.__api_request('DELETE', '/api/v1/lists/{0}/accounts'.format(id), params) 1134 self.__api_request('DELETE', '/api/v1/lists/{0}/accounts'.format(id), params)
1143 1135
1144 ### 1136 ###
1145 # Writing data: Reports 1137 # Writing data: Reports
Powered by cgit v1.2.3 (git 2.41.0)