api: Implement GET /users/me/alert_words.

This commit is contained in:
Yago González 2018-07-12 19:08:55 +05:30 committed by Eeshan Garg
parent 50173c105b
commit c057e0df14

View file

@ -895,6 +895,13 @@ class Client(object):
request=request,
)
def get_alert_words(self):
# type: () -> Dict[str, Any]
return self.call_endpoint(
url='users/me/alert_words',
method='GET'
)
def list_subscriptions(self, request=None):
# type: (Optional[Dict[str, Any]]) -> Dict[str, Any]
'''