diff options
| author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-06-24 00:18:28 -0700 |
|---|---|---|
| committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-06-24 00:36:13 -0700 |
| commit | dbd548d428f222babb4e1d6a182b90f19b192e1f (patch) | |
| tree | 8a1fed7502b703b6a1ff2b0ccd1260f39bbd98e0 /adapters/external_dns/external_dns.go | |
| parent | fca8f5d8addeebba7d55d4b69159745c84f27a91 (diff) | |
| download | hatecomputers.club-dbd548d428f222babb4e1d6a182b90f19b192e1f.tar.gz hatecomputers.club-dbd548d428f222babb4e1d6a182b90f19b192e1f.zip | |
POST record with id to update to fix cloudflare 500
Diffstat (limited to 'adapters/external_dns/external_dns.go')
| -rw-r--r-- | adapters/external_dns/external_dns.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/adapters/external_dns/external_dns.go b/adapters/external_dns/external_dns.go index c861283..3894f6c 100644 --- a/adapters/external_dns/external_dns.go +++ b/adapters/external_dns/external_dns.go @@ -4,5 +4,6 @@ import "git.hatecomputers.club/hatecomputers/hatecomputers.club/database" type ExternalDNSAdapter interface { CreateDNSRecord(record *database.DNSRecord) (string, error) + UpdateDNSRecord(record *database.DNSRecord) error DeleteDNSRecord(id string) error } |
