[PR #1787] [MERGED] Cb 3536 add settings panel #2778

Closed
opened 2026-03-07 21:10:42 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/dbeaver/cloudbeaver/pull/1787
Author: @tfokina
Created: 6/26/2023
Status: Merged
Merged: 6/30/2023
Merged by: @Wroud

Base: develHead: CB-3536-add-settings-panel


📝 Commits (8)

  • 5a8698f CB-3536 add settings panel
  • fd04df0 CB-3536 filter settings by group
  • b2b9b49 CB-3536 PR fixes, add settings to panel
  • ad2d855 Merge remote-tracking branch 'origin/devel' into CB-3536-add-settings-panel
  • 183ae03 CB-3536 export settings group
  • 5fee03d CB-3536 add translations, fix indentation
  • 3cf415d CB-3536 refactor translations
  • d229266 Merge branch 'devel' into CB-3536-add-settings-panel

📊 Changes

74 files changed (+900 additions, -39 deletions)

View changed files

📝 webapp/packages/core-administration/src/AdministrationSettingsService.ts (+1 -1)
webapp/packages/core-authentication/src/AUTH_SETTINGS_GROUP.ts (+24 -0)
📝 webapp/packages/core-authentication/src/AuthSettingsService.ts (+8 -2)
webapp/packages/core-authentication/src/LocaleService.ts (+35 -0)
📝 webapp/packages/core-authentication/src/index.ts (+1 -0)
webapp/packages/core-authentication/src/locales/en.ts (+5 -0)
webapp/packages/core-authentication/src/locales/it.ts (+5 -0)
webapp/packages/core-authentication/src/locales/ru.ts (+5 -0)
webapp/packages/core-authentication/src/locales/zh.ts (+5 -0)
📝 webapp/packages/core-authentication/src/manifest.ts (+2 -0)
📝 webapp/packages/core-browser/src/BrowserSettingsService.ts (+2 -2)
📝 webapp/packages/core-connections/src/ConnectionsSettingsService.ts (+1 -1)
📝 webapp/packages/core-events/src/EventsSettingsService.ts (+1 -1)
📝 webapp/packages/core-localization/src/LocalizationService.ts (+2 -2)
📝 webapp/packages/core-navigation-tree/src/NavTreeSettingsService.ts (+1 -1)
📝 webapp/packages/core-plugin/src/PluginManagerService.ts (+15 -7)
📝 webapp/packages/core-settings/package.json (+1 -1)
webapp/packages/core-settings/src/SettingsManagerService.ts (+73 -0)
webapp/packages/core-settings/src/createSettingsGroup.ts (+14 -0)
📝 webapp/packages/core-settings/src/index.ts (+2 -0)

...and 54 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/dbeaver/cloudbeaver/pull/1787 **Author:** [@tfokina](https://github.com/tfokina) **Created:** 6/26/2023 **Status:** ✅ Merged **Merged:** 6/30/2023 **Merged by:** [@Wroud](https://github.com/Wroud) **Base:** `devel` ← **Head:** `CB-3536-add-settings-panel` --- ### 📝 Commits (8) - [`5a8698f`](https://github.com/dbeaver/cloudbeaver/commit/5a8698f125a85c9675455b9e2956816a80aadfcf) CB-3536 add settings panel - [`fd04df0`](https://github.com/dbeaver/cloudbeaver/commit/fd04df0b627d991c6f98b749b1dfc4fb34f9eb6c) CB-3536 filter settings by group - [`b2b9b49`](https://github.com/dbeaver/cloudbeaver/commit/b2b9b49411df5863785668bf080f5df1ca46ba21) CB-3536 PR fixes, add settings to panel - [`ad2d855`](https://github.com/dbeaver/cloudbeaver/commit/ad2d855db4c2253b43af5516c3e70fc9477ec871) Merge remote-tracking branch 'origin/devel' into CB-3536-add-settings-panel - [`183ae03`](https://github.com/dbeaver/cloudbeaver/commit/183ae03387c443b8445671c97f22564863523fca) CB-3536 export settings group - [`5fee03d`](https://github.com/dbeaver/cloudbeaver/commit/5fee03d2c165e09627a399a9af91c1d4c223bac3) CB-3536 add translations, fix indentation - [`3cf415d`](https://github.com/dbeaver/cloudbeaver/commit/3cf415dae47d7175c1f0337065af6797d3d3e366) CB-3536 refactor translations - [`d229266`](https://github.com/dbeaver/cloudbeaver/commit/d229266f955936188bc815ab377920d21de8c970) Merge branch 'devel' into CB-3536-add-settings-panel ### 📊 Changes **74 files changed** (+900 additions, -39 deletions) <details> <summary>View changed files</summary> 📝 `webapp/packages/core-administration/src/AdministrationSettingsService.ts` (+1 -1) ➕ `webapp/packages/core-authentication/src/AUTH_SETTINGS_GROUP.ts` (+24 -0) 📝 `webapp/packages/core-authentication/src/AuthSettingsService.ts` (+8 -2) ➕ `webapp/packages/core-authentication/src/LocaleService.ts` (+35 -0) 📝 `webapp/packages/core-authentication/src/index.ts` (+1 -0) ➕ `webapp/packages/core-authentication/src/locales/en.ts` (+5 -0) ➕ `webapp/packages/core-authentication/src/locales/it.ts` (+5 -0) ➕ `webapp/packages/core-authentication/src/locales/ru.ts` (+5 -0) ➕ `webapp/packages/core-authentication/src/locales/zh.ts` (+5 -0) 📝 `webapp/packages/core-authentication/src/manifest.ts` (+2 -0) 📝 `webapp/packages/core-browser/src/BrowserSettingsService.ts` (+2 -2) 📝 `webapp/packages/core-connections/src/ConnectionsSettingsService.ts` (+1 -1) 📝 `webapp/packages/core-events/src/EventsSettingsService.ts` (+1 -1) 📝 `webapp/packages/core-localization/src/LocalizationService.ts` (+2 -2) 📝 `webapp/packages/core-navigation-tree/src/NavTreeSettingsService.ts` (+1 -1) 📝 `webapp/packages/core-plugin/src/PluginManagerService.ts` (+15 -7) 📝 `webapp/packages/core-settings/package.json` (+1 -1) ➕ `webapp/packages/core-settings/src/SettingsManagerService.ts` (+73 -0) ➕ `webapp/packages/core-settings/src/createSettingsGroup.ts` (+14 -0) 📝 `webapp/packages/core-settings/src/index.ts` (+2 -0) _...and 54 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-07 21:10:42 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/cloudbeaver#2778
No description provided.