mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-11-12 05:15:14 +00:00
- Add help docs for most sections - Add translations documentation - Fix up todos - Remove german translation
10 lines
232 B
TypeScript
10 lines
232 B
TypeScript
import * as api from "./base";
|
|
import type { AccessList } from "./models";
|
|
|
|
export async function createAccessList(item: AccessList): Promise<AccessList> {
|
|
return await api.post({
|
|
url: "/nginx/access-lists",
|
|
data: item,
|
|
});
|
|
}
|