DnsWebService: added new zone convert api support.

This commit is contained in:
Shreyas Zare
2023-06-25 19:14:41 +05:30
parent dff5d40fca
commit e10c856dce

View File

@@ -359,6 +359,7 @@ namespace DnsServerCore
//zones
_webService.MapGetAndPost("/api/zones/list", _zonesApi.ListZones);
_webService.MapGetAndPost("/api/zones/create", _zonesApi.CreateZoneAsync);
_webService.MapGetAndPost("/api/zones/convert", _zonesApi.ConvertZone);
_webService.MapGetAndPost("/api/zones/enable", _zonesApi.EnableZone);
_webService.MapGetAndPost("/api/zones/disable", _zonesApi.DisableZone);
_webService.MapGetAndPost("/api/zones/delete", _zonesApi.DeleteZone);