MCPcopy Create free account
hub / github.com/belak/gitdir / AdminConfig

Struct AdminConfig

models/admin_config.go:8–15  ·  view source on GitHub ↗

AdminConfig is the config.yml that comes from the admin repo.

Source from the content-addressed store, hash-verified

6
7// AdminConfig is the config.yml that comes from the admin repo.
8type 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.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected