Adding team settings to admin console

Этот коммит содержится в:
=Corey Hulen
2015-09-22 01:15:41 -07:00
родитель f05a2c03d5
Коммит 08a3acbb44
23 изменённых файлов: 344 добавлений и 313 удалений

Просмотреть файл

@@ -20,7 +20,6 @@ const (
)
type ServiceSettings struct {
SiteName string
Mode string
AllowTesting bool
UseSSL bool
@@ -68,6 +67,7 @@ type LogSettings struct {
type ImageSettings struct {
DriverName string
Directory string
EnablePublicLink bool
ThumbnailWidth uint
ThumbnailHeight uint
PreviewWidth uint
@@ -113,12 +113,11 @@ type PrivacySettings struct {
}
type TeamSettings struct {
SiteName string
MaxUsersPerTeam int
AllowPublicLink bool
AllowValetDefault bool
TourLink string
DefaultThemeColor string
DisableTeamCreation bool
EnableTeamCreation bool
EnableUserCreation bool
RestrictCreationToDomains string
}

Просмотреть файл

@@ -27,7 +27,6 @@ type Team struct {
Type string `json:"type"`
CompanyName string `json:"company_name"`
AllowedDomains string `json:"allowed_domains"`
AllowValet bool `json:"allow_valet"`
}
type Invites struct {