You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-11-26 17:03:12 +03:00
add client method to remove pusher (#3324)
* add client method to remove pusher * remove unused type
This commit is contained in:
@@ -8627,6 +8627,23 @@ export class MatrixClient extends TypedEventEmitter<EmittedEvents, ClientEventHa
|
||||
return this.http.authedRequest(Method.Post, path, undefined, pusher);
|
||||
}
|
||||
|
||||
/**
|
||||
* Removes an existing pusher
|
||||
* @param pushKey - pushkey of pusher to remove
|
||||
* @param appId - app_id of pusher to remove
|
||||
* @returns Promise which resolves: Empty json object on success
|
||||
* @returns Rejects: with an error response.
|
||||
*/
|
||||
public removePusher(pushKey: string, appId: string): Promise<{}> {
|
||||
const path = "/pushers/set";
|
||||
const body = {
|
||||
pushkey: pushKey,
|
||||
app_id: appId,
|
||||
kind: null, // marks pusher for removal
|
||||
};
|
||||
return this.http.authedRequest(Method.Post, path, undefined, body);
|
||||
}
|
||||
|
||||
/**
|
||||
* Persists local notification settings
|
||||
* @returns Promise which resolves: an empty object
|
||||
|
||||
Reference in New Issue
Block a user