api: Implement DELETE /users/me/alert_words.
This commit is contained in:
parent
c661d78b63
commit
3070106365
|
@ -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):
|
||||
# type: (Optional[Dict[str, Any]]) -> Dict[str, Any]
|
||||
'''
|
||||
|
|
Loading…
Reference in a new issue