mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-04 00:13:33 +00:00
Moved v3 code from NginxProxyManager/nginx-proxy-manager-3 to NginxProxyManager/nginx-proxy-manager
This commit is contained in:
19
frontend/src/api/npm/getSettings.ts
Normal file
19
frontend/src/api/npm/getSettings.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import * as api from "./base";
|
||||
import { SettingsResponse } from "./responseTypes";
|
||||
|
||||
export async function getSettings(
|
||||
offset = 0,
|
||||
limit = 10,
|
||||
sort?: string,
|
||||
filters?: { [key: string]: string },
|
||||
abortController?: AbortController,
|
||||
): Promise<SettingsResponse> {
|
||||
const { result } = await api.get(
|
||||
{
|
||||
url: "settings",
|
||||
params: { limit, offset, sort, ...filters },
|
||||
},
|
||||
abortController,
|
||||
);
|
||||
return result;
|
||||
}
|
Reference in New Issue
Block a user