diff --git a/src/http.ts b/src/http.ts index d9cfb58..0561470 100644 --- a/src/http.ts +++ b/src/http.ts @@ -36,6 +36,7 @@ import { DeleteCommunity } from "./types/DeleteCommunity"; import { DeleteCustomEmoji } from "./types/DeleteCustomEmoji"; import { DeletePost } from "./types/DeletePost"; import { DeletePrivateMessage } from "./types/DeletePrivateMessage"; +import { DistinguishComment } from "./types/DistinguishComment"; import { EditComment } from "./types/EditComment"; import { EditCommunity } from "./types/EditCommunity"; import { EditCustomEmoji } from "./types/EditCustomEmoji"; @@ -655,6 +656,19 @@ export class LemmyHttp { ); } + /** + * Distinguishes a comment (speak as moderator) + * + * `HTTP.POST /comment/distinguish` + */ + distinguishComment(form: DistinguishComment) { + return this.wrapper( + HttpType.Post, + "/comment/distinguish", + form + ); + } + /** * Get / fetch comments. *