mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2026-02-04 09:52:52 +00:00
React
This commit is contained in:
17
frontend/src/api/backend/validateCertificate.ts
Normal file
17
frontend/src/api/backend/validateCertificate.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import * as api from "./base";
|
||||
import type { ValidatedCertificateResponse } from "./responseTypes";
|
||||
|
||||
export async function validateCertificate(
|
||||
certificate: string,
|
||||
certificateKey: string,
|
||||
intermediateCertificate?: string,
|
||||
abortController?: AbortController,
|
||||
): Promise<ValidatedCertificateResponse> {
|
||||
return await api.post(
|
||||
{
|
||||
url: "/nginx/certificates/validate",
|
||||
data: { certificate, certificateKey, intermediateCertificate },
|
||||
},
|
||||
abortController,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user