From 0b4cca04a78f5cc1a588f5ddc74e70abfde4c390 Mon Sep 17 00:00:00 2001 From: zveinn Date: Sun, 19 Nov 2023 13:11:53 +0000 Subject: [PATCH] internal wails stuff --- frontend/wailsjs/go/main/Service.d.ts | 2 ++ frontend/wailsjs/go/main/Service.js | 4 ++++ frontend/wailsjs/go/models.ts | 2 ++ 3 files changed, 8 insertions(+) diff --git a/frontend/wailsjs/go/main/Service.d.ts b/frontend/wailsjs/go/main/Service.d.ts index 8754cd8..15c4314 100755 --- a/frontend/wailsjs/go/main/Service.d.ts +++ b/frontend/wailsjs/go/main/Service.d.ts @@ -3,6 +3,8 @@ import {core} from '../models'; import {main} from '../models'; +export function BlockedDomainLogging(arg1:boolean):Promise; + export function Connect(arg1:core.CONTROLLER_SESSION_REQUEST):Promise; export function DisableAllBlocklists():Promise; diff --git a/frontend/wailsjs/go/main/Service.js b/frontend/wailsjs/go/main/Service.js index af885ac..da60e91 100755 --- a/frontend/wailsjs/go/main/Service.js +++ b/frontend/wailsjs/go/main/Service.js @@ -2,6 +2,10 @@ // Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL // This file is automatically generated. DO NOT EDIT +export function BlockedDomainLogging(arg1) { + return window['go']['main']['Service']['BlockedDomainLogging'](arg1); +} + export function Connect(arg1) { return window['go']['main']['Service']['Connect'](arg1); } diff --git a/frontend/wailsjs/go/models.ts b/frontend/wailsjs/go/models.ts index 95ff21a..117d05c 100755 --- a/frontend/wailsjs/go/models.ts +++ b/frontend/wailsjs/go/models.ts @@ -35,6 +35,7 @@ export namespace core { PrevSlot?: CONTROLLER_SESSION_REQUEST; DisableIPv6OnConnect: boolean; CloseConnectionsOnConnect: boolean; + CustomDNS: boolean; static createFrom(source: any = {}) { return new CONFIG_FORM(source); @@ -54,6 +55,7 @@ export namespace core { this.PrevSlot = this.convertValues(source["PrevSlot"], CONTROLLER_SESSION_REQUEST); this.DisableIPv6OnConnect = source["DisableIPv6OnConnect"]; this.CloseConnectionsOnConnect = source["CloseConnectionsOnConnect"]; + this.CustomDNS = source["CustomDNS"]; } convertValues(a: any, classs: any, asMap: boolean = false): any {