Merge pull request #22658 from mattermost/MM-50966-in-product-expansion

MM-50365 - In Product Expansion Front-End
Этот коммит содержится в:
Conor Macpherson
2023-04-20 10:35:41 -04:00
коммит произвёл GitHub
родитель 87555aa242 4a77773774
Коммит 3795f5a470
45 изменённых файлов: 2411 добавлений и 53 удалений

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

@@ -390,7 +390,6 @@ type ServiceSettings struct {
EnableCustomGroups *bool `access:"site_users_and_teams"`
SelfHostedPurchase *bool `access:"write_restrictable,cloud_restrictable"`
AllowSyncedDrafts *bool `access:"site_posts"`
SelfHostedExpansion *bool `access:"write_restrictable,cloud_restrictable"`
}
func (s *ServiceSettings) SetDefaults(isUpdate bool) {
@@ -863,10 +862,6 @@ func (s *ServiceSettings) SetDefaults(isUpdate bool) {
if s.SelfHostedPurchase == nil {
s.SelfHostedPurchase = NewBool(true)
}
if s.SelfHostedExpansion == nil {
s.SelfHostedExpansion = NewBool(false)
}
}
type ClusterSettings struct {