1
0
mirror of https://github.com/NginxProxyManager/nginx-proxy-manager.git synced 2025-11-04 04:11:42 +03:00
Files
nginx-proxy-manager/frontend/src/api/backend/getDeadHosts.ts
Jamie Curnow fadec9751e React
2025-10-02 08:10:42 +10:00

15 lines
353 B
TypeScript

import * as api from "./base";
import type { DeadHost } from "./models";
export type DeadHostExpansion = "owner" | "certificate";
export async function getDeadHosts(expand?: DeadHostExpansion[], params = {}): Promise<DeadHost[]> {
return await api.get({
url: "/nginx/dead-hosts",
params: {
expand: expand?.join(","),
...params,
},
});
}