Hardcode default config options
This commit is contained in:
parent
0cbbb83977
commit
baaee0bb27
1 changed files with 2 additions and 2 deletions
|
@ -35,8 +35,8 @@ public sealed class Config {
|
|||
}
|
||||
|
||||
public sealed class SecuritySection {
|
||||
public required bool AuthorizedFetch { get; init; }
|
||||
public required ExceptionVerbosity ExceptionVerbosity { get; init; }
|
||||
public required bool AuthorizedFetch { get; init; } = true;
|
||||
public required ExceptionVerbosity ExceptionVerbosity { get; init; } = ExceptionVerbosity.Basic;
|
||||
}
|
||||
|
||||
public sealed class DatabaseSection {
|
||||
|
|
Loading…
Add table
Reference in a new issue