chore: merge master

This commit is contained in:
Maël Gangloff
2024-10-02 12:59:37 +02:00
22 changed files with 1302 additions and 985 deletions

View File

@@ -4,6 +4,7 @@ export enum ConnectorProvider {
OVH = 'ovh',
GANDI = 'gandi',
AUTODNS = 'autodns',
NAMECHEAP = 'namecheap'
}
export type Connector = {

View File

@@ -15,7 +15,14 @@ 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>
case ConnectorProvider.NAMECHEAP:
return <Typography.Link target='_blank' href="https://ap.www.namecheap.com/settings/tools/apiaccess/">
{t`Retreive an API key and whitelist this instance's IP address on Namecheap's website`}
</Typography.Link>
case ConnectorProvider.AUTODNS:
return <Typography.Link target='_blank' href="https://en.autodns.com/domain-robot-api/">
{t`Because of some limitations in API of AutoDNS, we suggest to create an dedicated user for API with limited rights.`}
</Typography.Link>
default:
return <></>