RED-3749 - remove digital signature property revert

This commit is contained in:
Timo Bejan 2022-06-07 14:56:50 +03:00
parent 2e20443f06
commit 1d06a845e1
2 changed files with 0 additions and 2 deletions

View File

@ -19,7 +19,6 @@ export class SystemPreferencesFormComponent extends BaseFormComponent {
{ name: 'softDeleteCleanupTime', type: 'number' },
{ name: 'downloadCleanupDownloadFilesHours', type: 'number' },
{ name: 'downloadCleanupNotDownloadFilesHours', type: 'number' },
{ name: 'removeDigitalSignaturesOnUpload', type: 'boolean' },
];
private _initialConfiguration: SystemPreferences;

View File

@ -2,5 +2,4 @@ export interface SystemPreferences {
softDeleteCleanupTime: number;
downloadCleanupDownloadFilesHours: number;
downloadCleanupNotDownloadFilesHours: number;
removeDigitalSignaturesOnUpload: boolean;
}