diff --git a/.github/workflows/dev-build.yaml b/.github/workflows/dev-build.yaml index 3698868b1c..daa422db88 100644 --- a/.github/workflows/dev-build.yaml +++ b/.github/workflows/dev-build.yaml @@ -6,7 +6,7 @@ concurrency: on: push: - branches: ['3698-main-screen-localization'] # put your current branch to create a build. Core team only. + branches: ['2237-auto-stt-submit-preference'] # put your current branch to create a build. Core team only. paths-ignore: - '**.md' - 'cloud-deployments/*' diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index 96a9afb5eb..0bd74bfdb5 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -34,6 +34,10 @@ const BrandingSettings = lazy( () => import("@/pages/GeneralSettings/Settings/Branding") ); +const ChatSettings = lazy( + () => import("@/pages/GeneralSettings/Settings/Chat") +); + const GeneralApiKeys = lazy(() => import("@/pages/GeneralSettings/ApiKeys")); const GeneralLLMPreference = lazy( () => import("@/pages/GeneralSettings/LLMPreference") @@ -197,6 +201,10 @@ export default function App() { path="/settings/branding" element={} /> + } + /> } diff --git a/frontend/src/components/SettingsSidebar/index.jsx b/frontend/src/components/SettingsSidebar/index.jsx index 629d6ba151..e581714638 100644 --- a/frontend/src/components/SettingsSidebar/index.jsx +++ b/frontend/src/components/SettingsSidebar/index.jsx @@ -333,6 +333,12 @@ const SidebarOptions = ({ user = null, t }) => ( flex: true, roles: ["admin", "manager"], }, + { + btnText: t("settings.chat"), + href: paths.settings.chat(), + flex: true, + roles: ["admin", "manager"], + }, ]} />