This commit is contained in:
2023-01-04 00:47:02 +00:00
parent e774cce540
commit 588d2d4f37
2 changed files with 13 additions and 1 deletions

2
.vscode/launch.json vendored
View File

@@ -35,7 +35,7 @@
"SOCKEYE_DB_CONNECTION": "Server=localhost;Username=postgres;Password=sockeye;Database=sockeye;CommandTimeout=300;",
"SOCKEYE_DATA_PATH": "c:\\temp\\sockeye",
"SOCKEYE_USE_URLS": "http://*:7676;",
"SOCKEYE_PERMANENTLY_ERASE_DATABASE":"true",
//"SOCKEYE_PERMANENTLY_ERASE_DATABASE":"true",
//"SOCKEYE_REPORT_RENDERING_TIMEOUT":"1",
"SOCKEYE_BACKUP_PG_DUMP_PATH": "C:\\data\\code\\postgres_14\\bin"
},

View File

@@ -425,6 +425,18 @@ namespace Sockeye.Biz
}
#endregion
#region TrialLicenseRequest
{
List<FormField> l = new List<FormField>();
l.Add(new FormField { TKey = "Tags", FieldKey = "Tags" });
_formFields.Add(SockType.TrialLicenseRequest.ToString(), l);
}
#endregion
//******************************************************
}