Remove DocumentPathOrigin from DbConfig and usages

DocumentPathOrigin property and all related code references have
been removed from DbConfig, ConfigModel, and FinalizeDocumentJob.
DocumentPath is now used exclusively for document path handling,
simplifying configuration and reducing redundancy.
This commit is contained in:
2026-03-06 13:51:20 +01:00
parent 79d093c492
commit d6058c41d0
3 changed files with 2 additions and 4 deletions

View File

@@ -287,8 +287,8 @@ public class FinalizeDocumentJob(IOptions<WorkerOptions> options, IConfiguration
else
{
logger?.LogDebug("we got bytes..");
inputPath = _config!.DocumentPathOrigin;
logger?.LogDebug("oInputPath: {0}", _config.DocumentPathOrigin);
inputPath = _config!.DocumentPath;
logger?.LogDebug("oInputPath: {0}", _config.DocumentPath);
}
if (envelopeData.DocAsByte is null)