Another endpoint.

This commit is contained in:
Dessalines 2024-11-10 10:36:47 -05:00
parent 95946cc50a
commit 36123c8cc9

View file

@ -139,6 +139,7 @@ import { ListCommentLikesResponse } from "./types/ListCommentLikesResponse";
import { HidePost } from "./types/HidePost"; import { HidePost } from "./types/HidePost";
import { ListMedia } from "./types/ListMedia"; import { ListMedia } from "./types/ListMedia";
import { ListMediaResponse } from "./types/ListMediaResponse"; import { ListMediaResponse } from "./types/ListMediaResponse";
import { GetRegistrationApplication } from "./types/GetRegistrationApplication";
enum HttpType { enum HttpType {
Get = "GET", Get = "GET",
@ -1330,6 +1331,18 @@ export class LemmyHttp {
>(HttpType.Put, "/admin/registration_application/approve", form); >(HttpType.Put, "/admin/registration_application/approve", form);
} }
/**
* Get the application a user submitted when they first registered their account
*
* `HTTP.GET /admin/registration_application`
*/
getRegistrationApplication(form: GetRegistrationApplication) {
return this.#wrapper<
GetRegistrationApplication,
RegistrationApplicationResponse
>(HttpType.Get, "/admin/registration_application", form);
}
/** /**
* Purge / Delete a person from the database. * Purge / Delete a person from the database.
* *
@ -1526,7 +1539,7 @@ export class LemmyHttp {
try { try {
json = await response.json(); json = await response.json();
} catch (error) { } catch {
throw new Error(response.statusText); throw new Error(response.statusText);
} }