From 0a99be6103e87fed62d66a2e477844e82aec4763 Mon Sep 17 00:00:00 2001 From: Kherel Date: Wed, 27 Jan 2021 09:33:26 +0100 Subject: [PATCH] add vpn --- lib/logic/api_maps/cloudflare.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/logic/api_maps/cloudflare.dart b/lib/logic/api_maps/cloudflare.dart index eea03a61..8ba278aa 100644 --- a/lib/logic/api_maps/cloudflare.dart +++ b/lib/logic/api_maps/cloudflare.dart @@ -73,6 +73,7 @@ class CloudflareApi extends ApiMap { var passwordA = DnsRecords(type: 'A', name: 'password', content: ip4); var socialA = DnsRecords(type: 'A', name: 'social', content: ip4); var mx = DnsRecords(type: 'MX', name: '@', content: domainName); + var vpn = DnsRecords(type: 'A', name: 'vpn', content: ip4); var txt1 = DnsRecords( type: 'TXT', @@ -98,7 +99,8 @@ class CloudflareApi extends ApiMap { socialA, mx, txt1, - txt2 + txt2, + vpn ]; var allFutures = [];