From 74491f831ce94f3efa127a6234feb95b2fb80b0a Mon Sep 17 00:00:00 2001 From: Jason Blais <13119842+jasonblais@users.noreply.github.com> Date: Wed, 13 Jul 2022 02:03:13 -0400 Subject: [PATCH] Make three file settings editable in Cloud System Console UI (#20525) Automatic Merge --- model/config.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/model/config.go b/model/config.go index a93b86e195..7f8d0ebaca 100644 --- a/model/config.go +++ b/model/config.go @@ -1401,9 +1401,9 @@ func (s *PasswordSettings) SetDefaults() { } type FileSettings struct { - EnableFileAttachments *bool `access:"site_file_sharing_and_downloads,cloud_restrictable"` - EnableMobileUpload *bool `access:"site_file_sharing_and_downloads,cloud_restrictable"` - EnableMobileDownload *bool `access:"site_file_sharing_and_downloads,cloud_restrictable"` + EnableFileAttachments *bool `access:"site_file_sharing_and_downloads"` + EnableMobileUpload *bool `access:"site_file_sharing_and_downloads"` + EnableMobileDownload *bool `access:"site_file_sharing_and_downloads"` MaxFileSize *int64 `access:"environment_file_storage,cloud_restrictable"` MaxImageResolution *int64 `access:"environment_file_storage,cloud_restrictable"` MaxImageDecoderConcurrency *int64 `access:"environment_file_storage,cloud_restrictable"`