From b63a7cd24150f8c6d57ec81ac526813a263975e4 Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Fri, 12 Jun 2020 16:45:45 +0200 Subject: [PATCH 1/2] Remove timezone setting from profile settings bundle --- pkg/service/v0/settings.go | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/pkg/service/v0/settings.go b/pkg/service/v0/settings.go index 4934053baa..07f62b91ab 100644 --- a/pkg/service/v0/settings.go +++ b/pkg/service/v0/settings.go @@ -11,33 +11,6 @@ func generateSettingsBundleProfileRequest() settings.SaveSettingsBundleRequest { }, DisplayName: "Profile", Settings: []*settings.Setting{ - { - SettingKey: "timezone", - DisplayName: "Timezone", - Description: "User timezone", - Value: &settings.Setting_SingleChoiceValue{ - SingleChoiceValue: &settings.SingleChoiceListSetting{ - Options: []*settings.ListOption{ - { - Value: &settings.ListOptionValue{ - Option: &settings.ListOptionValue_StringValue{ - StringValue: "Europe/Berlin", - }, - }, - DisplayValue: "Europe/Berlin", - }, - { - Value: &settings.ListOptionValue{ - Option: &settings.ListOptionValue_StringValue{ - StringValue: "Asia/Kathmandu", - }, - }, - DisplayValue: "Asia/Kathmandu", - }, - }, - }, - }, - }, { SettingKey: "language", DisplayName: "Language", From 5a4a5d87371ca926d377f01a5eaa72f4115b1ddf Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Fri, 12 Jun 2020 16:50:53 +0200 Subject: [PATCH 2/2] Add changelog item --- changelog/unreleased/remove-timezone-setting.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 changelog/unreleased/remove-timezone-setting.md diff --git a/changelog/unreleased/remove-timezone-setting.md b/changelog/unreleased/remove-timezone-setting.md new file mode 100644 index 0000000000..d46f57d064 --- /dev/null +++ b/changelog/unreleased/remove-timezone-setting.md @@ -0,0 +1,7 @@ +Change: Remove timezone setting + +We had a timezone setting in our profile settings bundle. As we're not dealing with a timezone yet +it would be confusing for the user to have a timezone setting available. We removed it, until we +have a timezone implementation available in ocis-web. + +https://github.com/owncloud/ocis-accounts/pull/33