mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-25 01:55:43 +00:00
breaking: update runtime options
This commit is contained in:
parent
567e12a1e9
commit
46eaef12eb
1 changed files with 14 additions and 9 deletions
|
@ -23,8 +23,13 @@ type Config struct {
|
||||||
Mailer MailerConf `yaml:"mailer"`
|
Mailer MailerConf `yaml:"mailer"`
|
||||||
Swagger SwaggerConf `yaml:"swagger"`
|
Swagger SwaggerConf `yaml:"swagger"`
|
||||||
Demo bool `yaml:"demo"`
|
Demo bool `yaml:"demo"`
|
||||||
AllowRegistration bool `yaml:"disable_registration" conf:"default:true"`
|
|
||||||
Debug DebugConf `yaml:"debug"`
|
Debug DebugConf `yaml:"debug"`
|
||||||
|
Options Options `yaml:"options"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type Options struct {
|
||||||
|
AllowRegistration bool `yaml:"disable_registration" conf:"default:true"`
|
||||||
|
AutoIncrementAssetID bool `yaml:"auto_increment_asset_id" conf:"default:true"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type DebugConf struct {
|
type DebugConf struct {
|
||||||
|
|
Loading…
Reference in a new issue