mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
5d3bc0fabd
- updated chakra and typescript - added locales for dns provider configs
27 lines
465 B
Go
27 lines
465 B
Go
package dnsproviders
|
|
|
|
func getDNSDpi() Provider {
|
|
return Provider{
|
|
Title: "dns_dpi",
|
|
Type: "object",
|
|
AdditionalProperties: false,
|
|
Required: []string{
|
|
"DPI_Id",
|
|
"DPI_Key",
|
|
},
|
|
Properties: map[string]providerField{
|
|
"DPI_Id": {
|
|
Title: "id",
|
|
Type: "string",
|
|
MinLength: 1,
|
|
},
|
|
"DPI_Key": {
|
|
Title: "key",
|
|
Type: "string",
|
|
MinLength: 1,
|
|
IsSecret: true,
|
|
},
|
|
},
|
|
}
|
|
}
|