added per set blocktime
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing

This commit is contained in:
Paul 2022-06-04 11:32:56 +02:00
parent 9d70341f41
commit f854a3b219

View File

@ -137,6 +137,7 @@ type CfgSet struct {
Type string `xorm:"text notnull" json:"type"` Type string `xorm:"text notnull" json:"type"`
Filename string `xorm:"text notnull" json:"filename"` Filename string `xorm:"text notnull" json:"filename"`
Regex string `xorm:"text notnull" json:"regex"` Regex string `xorm:"text notnull" json:"regex"`
Blocktime int64 `xorm:"notnull default 60" json:"blocktime"`
Enabled bool `xorm:"notnull default true" json:"-"` Enabled bool `xorm:"notnull default true" json:"-"`
} }