api: Implement DELETE /users/me/alert_words.

This commit is contained in:
Yago González 2018-07-12 20:52:32 +05:30 committed by Eeshan Garg
parent c661d78b63
commit 3070106365

View file

@ -912,6 +912,16 @@ class Client(object):
} }
) )
def remove_alert_words(self, alert_words):
# type: (List[str]) -> Dict[str, Any]
return self.call_endpoint(
url='users/me/alert_words',
method='DELETE',
request={
'alert_words': alert_words
}
)
def list_subscriptions(self, request=None): def list_subscriptions(self, request=None):
# type: (Optional[Dict[str, Any]]) -> Dict[str, Any] # type: (Optional[Dict[str, Any]]) -> Dict[str, Any]
''' '''