diff --git a/EnotaryoPH/EnotaryoPH.Data/Constants/VideoRecordingLocationType.cs b/EnotaryoPH/EnotaryoPH.Data/Constants/VideoRecordingLocationType.cs new file mode 100644 index 0000000..1549e7c --- /dev/null +++ b/EnotaryoPH/EnotaryoPH.Data/Constants/VideoRecordingLocationType.cs @@ -0,0 +1,10 @@ +namespace EnotaryoPH.Data.Constants +{ + public enum VideoRecordingLocationType + { + Unknown = 0, + LocalFolder = 1, + SharedFolder = 2, + AzureBlob = 3 + } +} \ No newline at end of file diff --git a/EnotaryoPH/EnotaryoPH.Web/appsettings.json b/EnotaryoPH/EnotaryoPH.Web/appsettings.json index 16e6807..1051611 100644 --- a/EnotaryoPH/EnotaryoPH.Web/appsettings.json +++ b/EnotaryoPH/EnotaryoPH.Web/appsettings.json @@ -8,7 +8,8 @@ "AllowedHosts": "*", "ConnectionStrings": { "NotaryoDatabase": "Host=localhost; Database=enotaryodb; Username=enotaryodbuser; Password=secret", - "AzureCommunication": "secret" + "AzureCommunication": "secret", + "AzureStorage": "secret" }, "CompreFaceConfig": { "APIKey": "secret", @@ -26,5 +27,6 @@ }, "BaseUrl": "https://localhost:7121", "SyncfusionLicenseKey": "secret", - "UriRecordingBloblContainer": "secret" + "UriRecordingBloblContainer": "secret", + "VideoRecordingsLocation": "C:\\recordings\\enotaryo\\" } \ No newline at end of file