diff options
author | Lorenz Diener <[email protected]> | 2017-12-13 22:33:29 +0100 |
---|---|---|
committer | Lorenz Diener <[email protected]> | 2017-12-13 22:33:29 +0100 |
commit | afaab2b8743a11f2a8567873df8ae6ed7873ebb5 (patch) | |
tree | 7081e22d39df24bcf9ae8cacef76c75dd939d64d /mastodon | |
parent | 0b5c0ae5ccb61a42ed19ee9c5b46de65979b9060 (diff) | |
download | mastodon.py-afaab2b8743a11f2a8567873df8ae6ed7873ebb5.tar.gz |
Document list endpoints
Diffstat (limited to 'mastodon')
-rw-r--r-- | mastodon/Mastodon.py | 12 |
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 |