diff --git a/IRaCIS.Core.API/Controllers/ExtraController.cs b/IRaCIS.Core.API/Controllers/ExtraController.cs index e62d2df39..5fc48612a 100644 --- a/IRaCIS.Core.API/Controllers/ExtraController.cs +++ b/IRaCIS.Core.API/Controllers/ExtraController.cs @@ -334,6 +334,7 @@ namespace IRaCIS.Api.Controllers region = ossOptions.region, bucketName = ossOptions.bucketName, + endPoint = ossOptions.endPoint, viewEndpoint = ossOptions.viewEndpoint, }; diff --git a/IRaCIS.Core.Application/Helper/OSSService.cs b/IRaCIS.Core.Application/Helper/OSSService.cs index 05f9fa19e..a9c96d1f3 100644 --- a/IRaCIS.Core.Application/Helper/OSSService.cs +++ b/IRaCIS.Core.Application/Helper/OSSService.cs @@ -89,6 +89,7 @@ namespace IRaCIS.Core.Application.Helper public string region { get; set; } public string bucketName { get; set; } + public string endPoint { get; set; } public string viewEndpoint { get; set; } }