Removing prematurely merged listMedia.

This commit is contained in:
Dessalines 2024-03-13 15:40:19 -04:00
parent 02921b21a2
commit b145a1d151

View file

@ -139,8 +139,6 @@ import { ListPostLikesResponse } from "./types/ListPostLikesResponse";
import { ListCommentLikes } from "./types/ListCommentLikes";
import { ListCommentLikesResponse } from "./types/ListCommentLikesResponse";
import { HidePost } from "./types/HidePost";
import { ListMedia } from "./types/ListMedia";
import { ListMediaResponse } from "./types/ListMediaResponse";
enum HttpType {
Get = "GET",
@ -292,19 +290,6 @@ export class LemmyHttp {
);
}
/**
* List all the media for your user
*
* `HTTP.GET /user/list_media`
*/
listMedia(form: ListMedia) {
return this.#wrapper<ListMedia, ListMediaResponse>(
HttpType.Get,
"/user/list_media",
form,
);
}
/**
* Enable / Disable TOTP / two-factor authentication.
*