Files
nginx-proxy-manager/frontend/src/api/backend/createProxyHost.ts
Jamie Curnow 5d6916dcf0 Tidy up
- Add help docs for most sections
- Add translations documentation
- Fix up todos
- Remove german translation
2025-10-28 15:41:11 +10:00

10 lines
227 B
TypeScript

import * as api from "./base";
import type { ProxyHost } from "./models";
export async function createProxyHost(item: ProxyHost): Promise<ProxyHost> {
return await api.post({
url: "/nginx/proxy-hosts",
data: item,
});
}