feat(RelationshipsManager): new cancelFriendRequest method

This commit is contained in:
Mantou 2022-07-19 18:50:41 +08:00 committed by GitHub
parent 013448da8e
commit 64e6dae193
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -121,6 +121,16 @@ class RelationshipsManager {
return true;
}
/**
* Cancels a friend request.
* @param {Snowflake} snowflake Snowflake of the user you want to delete
* @returns {Promise<boolean>}
*/
async cancelFriendRequest(id) {
await this.client.api.users['@me'].relationships[id].delete();
return true;
}
/**
* Accepts a friend request.
* @param {UserResolvable} user The user to add as a friend