mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
feat: add GANDI provider
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
import {request} from "./index";
|
||||
|
||||
export enum ConnectorProvider {
|
||||
OVH = 'ovh'
|
||||
OVH = 'ovh',
|
||||
GANDI = 'gandi'
|
||||
}
|
||||
|
||||
export type Connector = {
|
||||
|
||||
@@ -10,8 +10,14 @@ export const helpGetTokenLink = (provider?: string) => {
|
||||
href="https://api.ovh.com/createToken/index.cgi?GET=/order/cart&GET=/order/cart/*&POST=/order/cart&POST=/order/cart/*&DELETE=/order/cart/*">
|
||||
{t`Retrieve a set of tokens from your customer account on the Provider's website`}
|
||||
</Typography.Link>
|
||||
|
||||
case ConnectorProvider.GANDI:
|
||||
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 <></>
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -19,6 +25,8 @@ export const tosHyperlink = (provider?: string) => {
|
||||
switch (provider) {
|
||||
case ConnectorProvider.OVH:
|
||||
return 'https://www.ovhcloud.com/fr/terms-and-conditions/contracts/'
|
||||
case ConnectorProvider.GANDI:
|
||||
return 'https://www.gandi.net/en/contracts/terms-of-service'
|
||||
default:
|
||||
return ''
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user