changed imageUploadType to an UnionType of all the possible uploadTypes

Signed-off-by: Philip Molares <philip.molares@udo.edu>
Signed-off-by: David Mehren <dmehren1@gmail.com>
This commit is contained in:
Philip Molares 2020-04-12 20:33:44 +02:00 committed by David Mehren
parent 7125072fc5
commit 5c8541e65d
No known key found for this signature in database
GPG key ID: 6017AF117F9756CB

View file

@ -65,7 +65,7 @@ export interface Config {
heartbeatTimeout: number;
tooBusyLag: number;
documentMaxLength: number;
imageUploadType: string;
imageUploadType: 'azure' | 'filesystem' | 'imgur' | 'lutim' | 'minio' | 's3';
lutim?: {
url: string;
};