AdminConfig is the config.yml that comes from the admin repo.
| 6 | |
| 7 | // AdminConfig is the config.yml that comes from the admin repo. |
| 8 | type AdminConfig struct { |
| 9 | Invites map[string]string `yaml:"invites"` |
| 10 | Users map[string]*AdminConfigUser `yaml:"users"` |
| 11 | Orgs map[string]*OrgConfig `yaml:"orgs"` |
| 12 | Repos map[string]*RepoConfig `yaml:"repos"` |
| 13 | Groups map[string][]string `yaml:"groups"` |
| 14 | Options AdminConfigOptions `yaml:"options"` |
| 15 | } |
| 16 | |
| 17 | // AdminConfigUser defines additional fields which main be loaded from the admin |
| 18 | // config. |
nothing calls this directly
no outgoing calls
no test coverage detected