Implemented basic server file system endpoints and services. Implemented server files tab
This commit is contained in:
@@ -8,6 +8,7 @@ public class AppConfiguration
|
||||
public StorageData Storage { get; set; } = new();
|
||||
public SecurityData Security { get; set; } = new();
|
||||
public RemoteData Remote { get; set; } = new();
|
||||
public FilesData Files { get; set; } = new();
|
||||
|
||||
public class RemoteData
|
||||
{
|
||||
@@ -32,4 +33,9 @@ public class AppConfiguration
|
||||
public string Backups { get; set; } = PathBuilder.Dir("backups");
|
||||
public string Install { get; set; } = PathBuilder.Dir("install");
|
||||
}
|
||||
|
||||
public class FilesData
|
||||
{
|
||||
public int UploadLimit { get; set; } = 500;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user