Disabled repositories will now be removed from the Repositories slice immediately

This commit is contained in:
2024-08-28 10:58:49 +03:00
parent 123697e1dc
commit 12d5e7580e
3 changed files with 6 additions and 7 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ import (
type Repository struct {
Name string `yaml:"name"`
Source string `yaml:"source"`
Disabled bool `yaml:"disabled"`
Disabled *bool `yaml:"disabled"`
Entries map[string]*RepositoryEntry
}