From 2ea2293276e2461e83d852db13d9d9b6bc2fd845 Mon Sep 17 00:00:00 2001 From: Maria A Nunez Date: Wed, 18 Nov 2020 16:24:34 -0500 Subject: [PATCH] Remove `cloud_restrictable` for cloud billing settings (#16309) --- model/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/model/config.go b/model/config.go index 68cb82976d..28b381a3c3 100644 --- a/model/config.go +++ b/model/config.go @@ -898,8 +898,8 @@ type ExperimentalSettings struct { LinkMetadataTimeoutMilliseconds *int64 `access:"experimental,write_restrictable,cloud_restrictable"` RestrictSystemAdmin *bool `access:"experimental,write_restrictable"` UseNewSAMLLibrary *bool `access:"experimental,cloud_restrictable"` - CloudUserLimit *int64 `access:"experimental,write_restrictable,cloud_restrictable"` - CloudBilling *bool `access:"experimental,write_restrictable,cloud_restrictable"` + CloudUserLimit *int64 `access:"experimental,write_restrictable"` + CloudBilling *bool `access:"experimental,write_restrictable"` EnableSharedChannels *bool `access:"experimental"` }