24 lines
599 B
TypeScript
Executable File
24 lines
599 B
TypeScript
Executable File
import {useMutation} from '@tanstack/react-query';
|
|
import {apiClient} from '@common/http/query-client';
|
|
import {BackendResponse} from '@common/http/backend-response/backend-response';
|
|
|
|
interface Response extends BackendResponse {
|
|
result: 'connected' | null;
|
|
}
|
|
|
|
interface Payload {
|
|
host: string;
|
|
}
|
|
|
|
export function useValidateDomainDns() {
|
|
return useMutation({
|
|
mutationFn: (props: Payload) => authorize(props),
|
|
});
|
|
}
|
|
|
|
function authorize(payload: Payload): Promise<Response> {
|
|
return apiClient
|
|
.post('secure/custom-domain/validate/2BrM45vvfS/api', payload)
|
|
.then(r => r.data);
|
|
}
|