feat(provider): Implement AutoDNS

This commit is contained in:
Stefan Warnat
2024-09-22 18:33:22 +02:00
parent b1d0725275
commit e66d766dac
5 changed files with 1419 additions and 3 deletions

View File

@@ -2,7 +2,8 @@ import {request} from "./index";
export enum ConnectorProvider {
OVH = 'ovh',
GANDI = 'gandi'
GANDI = 'gandi',
AUTODNS = 'autodns',
}
export type Connector = {

View File

@@ -15,6 +15,7 @@ export const helpGetTokenLink = (provider?: string) => {
return <Typography.Link target='_blank' href="https://admin.gandi.net/organizations/account/pat">
{t`Retrieve a Personal Access Token from your customer account on the Provider's website`}
</Typography.Link>
default:
return <></>
@@ -27,6 +28,8 @@ export const tosHyperlink = (provider?: string) => {
return 'https://www.ovhcloud.com/fr/terms-and-conditions/contracts/'
case ConnectorProvider.GANDI:
return 'https://www.gandi.net/en/contracts/terms-of-service'
case ConnectorProvider.AUTODNS:
return 'https://www.internetx.com/agb/'
default:
return ''
}