mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-22 04:11:11 +00:00
lint
This commit is contained in:
parent
90640a4d78
commit
491c0ad67b
1 changed files with 15 additions and 5 deletions
20
src/http.ts
20
src/http.ts
|
@ -488,26 +488,36 @@ export class LemmyHttp {
|
|||
);
|
||||
}
|
||||
|
||||
getCommunityPendingFollowsCount(community_id: CommunityId) {
|
||||
getCommunityPendingFollowsCount(
|
||||
community_id: CommunityId,
|
||||
options?: RequestOptions,
|
||||
) {
|
||||
const form: GetCommunityPendingFollowsCount = { community_id };
|
||||
return this.#wrapper<
|
||||
GetCommunityPendingFollowsCount,
|
||||
GetCommunityPendingFollowsCountResponse
|
||||
>(HttpType.Get, "/community/pending_follows/count", form);
|
||||
>(HttpType.Get, "/community/pending_follows/count", form, options);
|
||||
}
|
||||
|
||||
listCommunityPendingFollows(form: ListCommunityPendingFollows) {
|
||||
listCommunityPendingFollows(
|
||||
form: ListCommunityPendingFollows,
|
||||
options?: RequestOptions,
|
||||
) {
|
||||
return this.#wrapper<
|
||||
ListCommunityPendingFollows,
|
||||
ListCommunityPendingFollowsResponse
|
||||
>(HttpType.Get, "/community/pending_follows/list", form);
|
||||
>(HttpType.Get, "/community/pending_follows/list", form, options);
|
||||
}
|
||||
|
||||
approveCommunityPendingFollow(form: ApproveCommunityPendingFollower) {
|
||||
approveCommunityPendingFollow(
|
||||
form: ApproveCommunityPendingFollower,
|
||||
options?: RequestOptions,
|
||||
) {
|
||||
return this.#wrapper<ApproveCommunityPendingFollower, SuccessResponse>(
|
||||
HttpType.Post,
|
||||
"/community/pending_follows/approve",
|
||||
form,
|
||||
options,
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue