Added option to disable the client hosting of the api server

This commit is contained in:
Masu Baumgartner
2024-11-03 19:20:51 +01:00
parent b73c3ebfb3
commit 17a4e7ec14
5 changed files with 31 additions and 7 deletions

View File

@@ -9,6 +9,12 @@ public class AppConfiguration
public DatabaseConfig Database { get; set; } = new();
public AuthenticationConfig Authentication { get; set; } = new();
public DevelopmentConfig Development { get; set; } = new();
public ClientConfig Client { get; set; } = new();
public class ClientConfig
{
public bool Enable { get; set; } = true;
}
public class DatabaseConfig
{