fix(ddns): add missing field WebhookRequestType (#436)

* fix(ddns): add missing field WebhookRequestType

* add missing placeholders
This commit is contained in:
UUBulb
2024-10-17 23:35:28 +08:00
committed by GitHub
parent a503f0cf40
commit be7b6e9c5e
9 changed files with 48 additions and 19 deletions

View File

@@ -51,6 +51,7 @@ var ProviderList = []DDNSProvider{
AccessSecret: true,
WebhookURL: true,
WebhookMethod: true,
WebhookRequestType: true,
WebhookRequestBody: true,
WebhookHeaders: true,
},
@@ -93,6 +94,7 @@ type DDNSProvider struct {
AccessSecret bool
WebhookURL bool
WebhookMethod bool
WebhookRequestType bool
WebhookRequestBody bool
WebhookHeaders bool
}