feat(scanner): allow disabling tags with Tags.<tag>.Ignore=true

Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan 2025-03-13 19:47:34 -04:00
parent b952672877
commit 2838ac36df
2 changed files with 22 additions and 8 deletions

View file

@ -140,6 +140,7 @@ type subsonicOptions struct {
}
type TagConf struct {
Ignore bool `yaml:"ignore"`
Aliases []string `yaml:"aliases"`
Type string `yaml:"type"`
MaxLength int `yaml:"maxLength"`