Setting to enable new experimental channel sidebar (#14036)
* Merge upstream * [MM-20881] Server changes for new experimental channel sidebar setting (#13434) * Remove report.xml Co-authored-by: Jason Deland <jaydeland@gmail.com> Co-authored-by: Devin Binnie <devin@Devins-MacBook-Pro.local> Co-authored-by: Harrison Healey <harrisonmhealey@gmail.com> Co-authored-by: mattermod <mattermod@users.noreply.github.com>
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
d0d6125541
Коммит
1cde88f147
@@ -312,6 +312,7 @@ func (a *App) trackConfig() {
|
|||||||
"experimental_strict_csrf_enforcement": *cfg.ServiceSettings.ExperimentalStrictCSRFEnforcement,
|
"experimental_strict_csrf_enforcement": *cfg.ServiceSettings.ExperimentalStrictCSRFEnforcement,
|
||||||
"enable_email_invitations": *cfg.ServiceSettings.EnableEmailInvitations,
|
"enable_email_invitations": *cfg.ServiceSettings.EnableEmailInvitations,
|
||||||
"experimental_channel_organization": *cfg.ServiceSettings.ExperimentalChannelOrganization,
|
"experimental_channel_organization": *cfg.ServiceSettings.ExperimentalChannelOrganization,
|
||||||
|
"experimental_channel_sidebar_organization": *cfg.ServiceSettings.ExperimentalChannelSidebarOrganization,
|
||||||
"disable_bots_when_owner_is_deactivated": *cfg.ServiceSettings.DisableBotsWhenOwnerIsDeactivated,
|
"disable_bots_when_owner_is_deactivated": *cfg.ServiceSettings.DisableBotsWhenOwnerIsDeactivated,
|
||||||
"enable_bot_account_creation": *cfg.ServiceSettings.EnableBotAccountCreation,
|
"enable_bot_account_creation": *cfg.ServiceSettings.EnableBotAccountCreation,
|
||||||
"enable_svgs": *cfg.ServiceSettings.EnableSVGs,
|
"enable_svgs": *cfg.ServiceSettings.EnableSVGs,
|
||||||
|
|||||||
@@ -57,6 +57,7 @@ func GenerateClientConfig(c *model.Config, diagnosticID string, license *model.L
|
|||||||
props["ExperimentalChannelOrganization"] = strconv.FormatBool(false)
|
props["ExperimentalChannelOrganization"] = strconv.FormatBool(false)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
props["ExperimentalChannelSidebarOrganization"] = *c.ServiceSettings.ExperimentalChannelSidebarOrganization
|
||||||
props["ExperimentalEnableAutomaticReplies"] = strconv.FormatBool(*c.TeamSettings.ExperimentalEnableAutomaticReplies)
|
props["ExperimentalEnableAutomaticReplies"] = strconv.FormatBool(*c.TeamSettings.ExperimentalEnableAutomaticReplies)
|
||||||
props["ExperimentalTimezone"] = strconv.FormatBool(*c.DisplaySettings.ExperimentalTimezone)
|
props["ExperimentalTimezone"] = strconv.FormatBool(*c.DisplaySettings.ExperimentalTimezone)
|
||||||
|
|
||||||
|
|||||||
@@ -314,6 +314,7 @@ type ServiceSettings struct {
|
|||||||
ExperimentalEnableDefaultChannelLeaveJoinMessages *bool
|
ExperimentalEnableDefaultChannelLeaveJoinMessages *bool
|
||||||
ExperimentalGroupUnreadChannels *string
|
ExperimentalGroupUnreadChannels *string
|
||||||
ExperimentalChannelOrganization *bool
|
ExperimentalChannelOrganization *bool
|
||||||
|
ExperimentalChannelSidebarOrganization *string
|
||||||
DEPRECATED_DO_NOT_USE_ImageProxyType *string `json:"ImageProxyType" mapstructure:"ImageProxyType"` // This field is deprecated and must not be used.
|
DEPRECATED_DO_NOT_USE_ImageProxyType *string `json:"ImageProxyType" mapstructure:"ImageProxyType"` // This field is deprecated and must not be used.
|
||||||
DEPRECATED_DO_NOT_USE_ImageProxyURL *string `json:"ImageProxyURL" mapstructure:"ImageProxyURL"` // This field is deprecated and must not be used.
|
DEPRECATED_DO_NOT_USE_ImageProxyURL *string `json:"ImageProxyURL" mapstructure:"ImageProxyURL"` // This field is deprecated and must not be used.
|
||||||
DEPRECATED_DO_NOT_USE_ImageProxyOptions *string `json:"ImageProxyOptions" mapstructure:"ImageProxyOptions"` // This field is deprecated and must not be used.
|
DEPRECATED_DO_NOT_USE_ImageProxyOptions *string `json:"ImageProxyOptions" mapstructure:"ImageProxyOptions"` // This field is deprecated and must not be used.
|
||||||
@@ -655,6 +656,10 @@ func (s *ServiceSettings) SetDefaults(isUpdate bool) {
|
|||||||
s.ExperimentalChannelOrganization = NewBool(experimentalUnreadEnabled)
|
s.ExperimentalChannelOrganization = NewBool(experimentalUnreadEnabled)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if s.ExperimentalChannelSidebarOrganization == nil {
|
||||||
|
s.ExperimentalChannelSidebarOrganization = NewString("disabled")
|
||||||
|
}
|
||||||
|
|
||||||
if s.DEPRECATED_DO_NOT_USE_ImageProxyType == nil {
|
if s.DEPRECATED_DO_NOT_USE_ImageProxyType == nil {
|
||||||
s.DEPRECATED_DO_NOT_USE_ImageProxyType = NewString("")
|
s.DEPRECATED_DO_NOT_USE_ImageProxyType = NewString("")
|
||||||
}
|
}
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user