mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
Fixed max upload size being int instead of long.
This commit is contained in:
parent
64c584d485
commit
7def4f222d
@ -11,7 +11,7 @@ namespace Teknik.Configuration
|
|||||||
public bool UploadEnabled { get; set; }
|
public bool UploadEnabled { get; set; }
|
||||||
public bool DownloadEnabled { get; set; }
|
public bool DownloadEnabled { get; set; }
|
||||||
// Max upload size in bytes
|
// Max upload size in bytes
|
||||||
public int MaxUploadSize { get; set; }
|
public long MaxUploadSize { get; set; }
|
||||||
// Location of the upload directory
|
// Location of the upload directory
|
||||||
public string UploadDirectory { get; set; }
|
public string UploadDirectory { get; set; }
|
||||||
// File Extension for saved files
|
// File Extension for saved files
|
||||||
|
Loading…
Reference in New Issue
Block a user