1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- class AllSetting {
- constructor(data) {
- this.webListen = "";
- this.webDomain = "";
- this.webPort = 2053;
- this.webCertFile = "";
- this.webKeyFile = "";
- this.webBasePath = "/";
- this.sessionMaxAge = 0;
- this.pageSize = 50;
- this.expireDiff = 0;
- this.trafficDiff = 0;
- this.remarkModel = "-ieo";
- this.datepicker = "gregorian";
- this.tgBotEnable = false;
- this.tgBotToken = "";
- this.tgBotProxy = "";
- this.tgBotChatId = "";
- this.tgRunTime = "@daily";
- this.tgBotBackup = false;
- this.tgBotLoginNotify = true;
- this.tgCpu = 80;
- this.tgLang = "en-US";
- this.xrayTemplateConfig = "";
- this.secretEnable = false;
- this.subEnable = false;
- this.subListen = "";
- this.subPort = 2096;
- this.subPath = "/sub/";
- this.subJsonPath = "/json/";
- this.subDomain = "";
- this.subCertFile = "";
- this.subKeyFile = "";
- this.subUpdates = 12;
- this.subEncrypt = true;
- this.subShowInfo = true;
- this.subURI = "";
- this.subJsonURI = "";
- this.subJsonFragment = "";
- this.subJsonNoise = "";
- this.subJsonMux = "";
- this.subJsonRules = "";
- this.timeLocation = "Asia/Tehran";
- if (data == null) {
- return
- }
- ObjectUtil.cloneProps(this, data);
- }
- equals(other) {
- return ObjectUtil.equals(this, other);
- }
- }
|