feat(index): add disable index option for storages (#7730)

This commit is contained in:
Jealous
2024-12-30 22:52:55 +08:00
committed by GitHub
parent 040dc14ee6
commit ed149be84b
3 changed files with 15 additions and 1 deletions

View File

@ -133,6 +133,12 @@ func getMainItems(config driver.Config) []driver.Item {
Type: conf.TypeSelect,
Options: "front,back",
})
items = append(items, driver.Item{
Name: "disable_index",
Type: conf.TypeBool,
Default: "false",
Required: true,
})
items = append(items, driver.Item{
Name: "enable_sign",
Type: conf.TypeBool,