new location type enum and settings

This commit is contained in:
jojo aquino 2025-03-28 18:09:26 +00:00
parent d9e10ae471
commit 2e31bfdb03
2 changed files with 14 additions and 2 deletions

View File

@ -0,0 +1,10 @@
namespace EnotaryoPH.Data.Constants
{
public enum VideoRecordingLocationType
{
Unknown = 0,
LocalFolder = 1,
SharedFolder = 2,
AzureBlob = 3
}
}

View File

@ -8,7 +8,8 @@
"AllowedHosts": "*", "AllowedHosts": "*",
"ConnectionStrings": { "ConnectionStrings": {
"NotaryoDatabase": "Host=localhost; Database=enotaryodb; Username=enotaryodbuser; Password=secret", "NotaryoDatabase": "Host=localhost; Database=enotaryodb; Username=enotaryodbuser; Password=secret",
"AzureCommunication": "secret" "AzureCommunication": "secret",
"AzureStorage": "secret"
}, },
"CompreFaceConfig": { "CompreFaceConfig": {
"APIKey": "secret", "APIKey": "secret",
@ -26,5 +27,6 @@
}, },
"BaseUrl": "https://localhost:7121", "BaseUrl": "https://localhost:7121",
"SyncfusionLicenseKey": "secret", "SyncfusionLicenseKey": "secret",
"UriRecordingBloblContainer": "secret" "UriRecordingBloblContainer": "secret",
"VideoRecordingsLocation": "C:\\recordings\\enotaryo\\"
} }