You've already forked nginx-proxy-manager
mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-11-04 04:11:42 +03:00
15 lines
353 B
TypeScript
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,
|
|
},
|
|
});
|
|
}
|