|
|
@@ -42,6 +42,7 @@ type UserGroup struct {
|
|
|
type Config struct {
|
|
|
UseSingleHTTPFrontend bool
|
|
|
ThemeName string
|
|
|
+ HideNavigation bool
|
|
|
ListenAddressSingleHTTPFrontend string
|
|
|
ListenAddressWebUI string
|
|
|
ListenAddressRestActions string
|
|
|
@@ -59,6 +60,7 @@ type Config struct {
|
|
|
func DefaultConfig() *Config {
|
|
|
config := Config{}
|
|
|
config.UseSingleHTTPFrontend = true
|
|
|
+ config.HideNavigation = false
|
|
|
config.ListenAddressSingleHTTPFrontend = "0.0.0.0:1337"
|
|
|
config.ListenAddressRestActions = "localhost:1338"
|
|
|
config.ListenAddressGrpcActions = "localhost:1339"
|